摘要: 任务一 #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(STU 阅读全文
posted @ 2021-12-28 16:22 诸神悬天 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 任务1 #include<stdio.h> #define N 5 int binarysearch(int* x, int n, int item); int main() { int a[N] = { 2,7,19,45,66 }; int i, index, key; printf("数组a中 阅读全文
posted @ 2021-12-20 20:56 诸神悬天 阅读(10) 评论(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; printf("original a 阅读全文
posted @ 2021-12-14 17:16 诸神悬天 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 任务一 task1 #include <stdio.h> const int N = 4; int main() { int a[N] = { 2, 0, 2, 1 }; char b[N] = { '2', '0', '1', '1' }; int i; printf("sizeof(int) = 阅读全文
posted @ 2021-12-06 20:29 诸神悬天 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 任务一 #include <stdio.h> long long fac(int n); int main() { int i, n; printf("Enter n: "); scanf_s("%d", &n); for (i = 1; i <= n; ++i) printf("%d! = %ll 阅读全文
posted @ 2021-11-28 20:53 诸神悬天 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 任务一 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> int main() { int num; scanf("%d", &num); printf("2049%04d\n", num); scanf("%d", &num); printf(" 阅读全文
posted @ 2021-11-14 16:52 诸神悬天 阅读(18) 评论(3) 推荐(0) 编辑
摘要: 任务一 #include <stdio.h> int main() { printf(" O \n"); printf("<H>\n"); printf("I I\n"); printf(" O \n"); printf("<H>\n"); printf("I I\n"); return 0; } 阅读全文
posted @ 2021-10-31 16:09 诸神悬天 阅读(0) 评论(0) 推荐(0) 编辑