06 2022 档案

摘要:task1_1.c 1 #include<stdio.h> 2 #define N 4 3 4 int main() 5 { 6 int x[N]={1,9,8,4}; 7 int i; 8 int *p; 9 10 p=x; 11 for(i=0;i<N;++i) 12 printf("%d",* 阅读全文
posted @ 2022-06-13 21:16 yuki丶丶 阅读(56) 评论(3) 推荐(0)
摘要:task1_1.c 1 #include<stdio.h> 2 #define N 5 3 #define M 80 4 5 typedef struct 6 { 7 char name[M]; 8 char author[M]; 9 } Book; 10 11 int main() 12 { 13 阅读全文
posted @ 2022-06-05 11:58 yuki丶丶 阅读(43) 评论(2) 推荐(0)