摘要: task4 代码 #include <stdio.h> #include<stdlib.h> #include<string.h> #define N 5 #define M 80 int main() { char ch[M]; int ch_counts = 0,n=0; FILE *fp; f 阅读全文
posted @ 2023-06-13 13:47 00z 阅读(8) 评论(0) 推荐(0) 编辑
摘要: task4 实验代码 #include <stdio.h> #include <string.h> #define N 100 typedef struct { char num[10]; int s1, s2; double sum; char level[10]; } STU; int fun( 阅读全文
posted @ 2023-05-31 21:04 00z 阅读(8) 评论(0) 推荐(0) 编辑
摘要: task1.1 代码 #include <stdio.h> #define N 4 int main() { int x[N] = {1, 9, 8, 4}; int i; int *p; // 方式1:通过数组名和下标遍历输出数组元素 for (i = 0; i < N; ++i) printf( 阅读全文
posted @ 2023-05-11 09:06 00z 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 任务一 代码 #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void print_text(int line, int col, char text[]); voi 阅读全文
posted @ 2023-04-05 11:02 00z 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 实验任务1 #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 20:06 00z 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 试验任务1.2 代码 #include <stdio.h> int main() { printf(" o o \n"); printf("<H> <H>\n"); printf("I I I I\n"); return 0; } 实验任务1.1 代码 #include <stdio.h> int 阅读全文
posted @ 2023-03-04 11:15 00z 阅读(11) 评论(0) 推荐(0) 编辑