11 2023 档案

摘要:task.1_1 源码 #include <stdio.h> #include<stdlib.h> #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max(int x[], int 阅读全文
posted @ 2023-11-27 21:08 lv_y 阅读(34) 评论(0) 推荐(0)
摘要:实验4 C语言数组应用编程 任务1_1 #include <stdio.h> #include<stdlib.h> #define N 4 void test1() { int a[N] = {1, 9, 8, 4}; int i; // 输出数组a占用的内存字节数 printf("sizeof(a 阅读全文
posted @ 2023-11-13 20:14 lv_y 阅读(33) 评论(0) 推荐(0)
摘要:任务1 源码 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #include <windows.h> 5 #define N 80 6 void print_text(int line, int col, char 阅读全文
posted @ 2023-11-01 20:46 lv_y 阅读(89) 评论(0) 推荐(0)