11 2021 档案

摘要:#include<stdio.h> #include<windows.h> long long fac(int n); int main() { int i,n; printf("Enter n:"); scanf("%d",&n); for(i=1;i<=n;i++) printf("%d!=%1 阅读全文
posted @ 2021-11-30 22:00 阅读(7) 评论(0) 推荐(0)
摘要:任务1:#include<stdio.h> int main() { int num; while(scanf("%d",&num)!=EOF) { printf("2049%04d\n",num); } return 0; } 任务2: #include<stdio.h> #include<std 阅读全文
posted @ 2021-11-16 18:52 阅读(20) 评论(3) 推荐(0)