摘要: task 4 #include <stdio.h> #include <string.h> #define N 80 int main(){ int n; char ch[N]; FILE *fp; fp=fopen("data4.txt", "r"); if(fp==NULL){ printf(" 阅读全文
posted @ 2023-06-15 12:55 Capetian 阅读(5) 评论(0) 推荐(0) 编辑
摘要: task 4 #include <stdio.h> #include<string.h> #define N 100 typedef struct { char num[10]; int s1; int s2; double sum; char level[10]; } STU; int fun(S 阅读全文
posted @ 2023-06-01 11:03 Capetian 阅读(5) 评论(0) 推荐(0) 编辑
摘要: task 1_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 13:30 Capetian 阅读(5) 评论(0) 推荐(0) 编辑
摘要: task1_1 #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", size 阅读全文
posted @ 2023-04-20 15:30 Capetian 阅读(17) 评论(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-06 14:08 Capetian 阅读(19) 评论(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-23 14:28 Capetian 阅读(11) 评论(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-04 16:04 Capetian 阅读(20) 评论(0) 推荐(0) 编辑