摘要: #include <stdio.h> #define N 5 typedef struct student { long no; char name[20]; int score; } STU; // 函数声明 void input(STU s[], int n); int findMinlist( 阅读全文
posted @ 2022-01-04 23:48 syzyyds 阅读(76) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #define N 5 void output(int x[], int n); int main() { int x[N] = {9, 55, 30, 27, 22}; int i; int k; // 用于记录最大元素的下标 int t; // 用作交换两个 阅读全文
posted @ 2021-12-20 20:30 syzyyds 阅读(25) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { int num; scanf("%d", &num); printf("2049%04d\n", num); scanf("%d", &num); printf("2049%04d\n", num); scanf("%d", &num) 阅读全文
posted @ 2021-12-20 20:11 syzyyds 阅读(9) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>#define N 5int binarySearch(int *x, int n, int item); int main(){int a[N] = {2, 7, 19, 45, 66};int i, index, key;printf("数组a中的数据:\n" 阅读全文
posted @ 2021-12-20 19:49 syzyyds 阅读(26) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.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!=%lld\n",i,fac(i)) ; retu 阅读全文
posted @ 2021-11-28 20:33 syzyyds 阅读(18) 评论(1) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-11-01 17:20 syzyyds 阅读(20) 评论(0) 推荐(0) 编辑