2022年6月14日
摘要: 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("%d",x[i]); pri 阅读全文
posted @ 2022-06-14 12:25 yaxi2333 阅读(27) 评论(0) 推荐(0) 编辑
  2022年6月7日
摘要: 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-07 00:28 yaxi2333 阅读(40) 评论(0) 推荐(0) 编辑
  2022年5月10日
摘要: #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)=%d\n",sizeof(int)); printf(" 阅读全文
posted @ 2022-05-10 12:55 yaxi2333 阅读(19) 评论(0) 推荐(0) 编辑
  2022年4月26日
摘要: 3-1 #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void printText(int line, int col, char text[]); void pr 阅读全文
posted @ 2022-04-26 11:17 yaxi2333 阅读(26) 评论(0) 推荐(0) 编辑
  2022年4月19日
摘要: task1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 /* run this program using the console pauser or add your own getch, system( 阅读全文
posted @ 2022-04-19 12:32 yaxi2333 阅读(45) 评论(0) 推荐(0) 编辑
  2022年3月29日
摘要: #include <stdio.h> #include <stdlib.h> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(i 阅读全文
posted @ 2022-03-29 16:18 yaxi2333 阅读(86) 评论(0) 推荐(0) 编辑