05 2023 档案

摘要:实验任务1 程序代码: #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h> #define N 3 typedef struct student{ int id;//学号 阅读全文
posted @ 2023-05-25 21:23 moreless-xu 阅读(21) 评论(1) 推荐(0)
摘要:实验任务1 task1_1 程序代码: #include <stdio.h> #include <stdlib.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 阅读全文
posted @ 2023-05-10 20:12 moreless-xu 阅读(18) 评论(1) 推荐(0)