摘要: task1_1 #include <stdio.h> #define N 7 #define M 80 typedef struct{ char name[M]; char author[M]; } Book; int main(){ Book x[N] = {{"《雕塑家》","斯科特·麦克劳德" 阅读全文
posted @ 2023-06-12 21:44 卡妹铁龙鱼 阅读(5) 评论(0) 推荐(0) 编辑
摘要: task1 #include <stdio.h> #include <string.h> #define N 3 typedef struct student { int id; char name[20]; char subject[20]; double perf; double mid; do 阅读全文
posted @ 2023-06-01 08:35 卡妹铁龙鱼 阅读(5) 评论(0) 推荐(0) 编辑
摘要: task1_1 #include <stdio.h> #define N 4 int main() { int x[N] = {1, 9, 8, 4}; int i; int *p; for (i = 0;i < N; ++i) printf("%d", x[i]); printf("\n"); f 阅读全文
posted @ 2023-05-11 12:27 卡妹铁龙鱼 阅读(5) 评论(0) 推荐(0) 编辑
摘要: task1 #include <stdio.h> #define N 4 int main(){ int a[N] = {2, 0, 2, 3}; char b[N] = {'2', '0', '2', '3'}; int i; printf("sizeof(int) = %d\n", sizeof 阅读全文
posted @ 2023-04-20 14:46 卡妹铁龙鱼 阅读(12) 评论(0) 推荐(0) 编辑
摘要: task1 #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void print_text(int line, int col, char text[]); void 阅读全文
posted @ 2023-04-05 23:23 卡妹铁龙鱼 阅读(10) 评论(0) 推荐(0) 编辑
摘要: task1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define R1 586 #define R2 701 int main() { int number; int i; srand( time(0 阅读全文
posted @ 2023-03-22 23:23 卡妹铁龙鱼 阅读(9) 评论(0) 推荐(0) 编辑
摘要: task1 #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 @ 2023-03-08 14:16 卡妹铁龙鱼 阅读(14) 评论(0) 推荐(0) 编辑