11 2023 档案

摘要:实验1 1 #include <stdio.h> 2 #define N 4 3 4 void test1( ){ 5 int a[N] = {1,9,8,4}; 6 int i; 7 8 printf("sizeof(a) = %d\n", sizeof(a)); 9 10 for(i=0;i<N 阅读全文
posted @ 2023-11-18 19:23 夏夜# 阅读(16) 评论(0) 推荐(0)
摘要:任务1 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #include <windows.h> 5 #define N 80 6 7 void print_text(int line, int col, char t 阅读全文
posted @ 2023-11-04 15:27 夏夜# 阅读(13) 评论(0) 推荐(0)