摘要: #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 阅读(26) 评论(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 阅读(27) 评论(0) 推荐(0) 编辑