摘要: 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"); for( 阅读全文
posted @ 2022-06-08 23:16 允楠 阅读(21) 评论(1) 推荐(0) 编辑
摘要: 1. 实验任务1 task1_1. #include <stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; char author[M]; }Book; int main() { Book x[N] = { {"一九八四" 阅读全文
posted @ 2022-06-05 00:03 允楠 阅读(25) 评论(2) 推荐(0) 编辑
摘要: 1. 实验任务1 task1_1 #include <stdio.h> #define N 4 int main() { int a[N] = {2, 0, 2, 2}; char b[N] = {'2', '0', '2', '2'}; int i; printf("sizeof(int) = % 阅读全文
posted @ 2022-05-03 20:40 允楠 阅读(8) 评论(3) 推荐(0) 编辑
摘要: 1. 实验任务1 #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void printText(int line, int col, char text[]); vo 阅读全文
posted @ 2022-04-19 21:32 允楠 阅读(9) 评论(2) 推荐(0) 编辑
摘要: 1, line 16功能:生成一个2018~2021的随机数grade。 line 17功能:生成一个1~999的随机数number。 该程序功能是随机生成5个学号。 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 阅读全文
posted @ 2022-04-13 20:32 允楠 阅读(11) 评论(2) 推荐(0) 编辑