05 2023 档案

摘要:实验任务一 程序源码 #include <stdio.h>#include <string.h> #define N 3 // 运行程序输入测试时,可以把这个数组改小一些输入测试 typedef struct student { int id; // 学号 char name[20]; // 姓名 阅读全文
posted @ 2023-05-25 17:20 就是睡得很香 阅读(11) 评论(0) 推荐(0)
摘要:实验任务一 task1 程序源码 #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]); print 阅读全文
posted @ 2023-05-11 12:49 就是睡得很香 阅读(13) 评论(0) 推荐(0)