摘要:
task4 1 #include <stdio.h> 2 #include <string.h> 3 #define N 5 4 #define M 80 5 int main() { 6 char songs[N][M]; 7 8 FILE* fp; 9 fp = fopen("data1.txt 阅读全文
摘要:
task4 1 #include <stdio.h> 2 #include <string.h> 3 #define N 10 4 typedef struct { 5 char isbn[20]; 6 char name[80]; 7 char author[80]; 8 double sales 阅读全文
摘要:
task1.1 1 #include <stdio.h> 2 #define N 5 3 void input(int x[], int n); 4 void output(int x[], int n); 5 void find_min_max(int x[], int n, int* pmin, 阅读全文
摘要:
task1 1. int型数组a,在内存中是连续存放的,每个元素占用4个内存字节单元,数组名a对应的值,和&a[0]一样2. char型数组b,在内存中是连续存放的,每个元素占用1个内存字节单元,数组名b对应的值,和&b[0]一样 3. int型二维数组a,在内存中按行连续存放,每个元素占用4个内存 阅读全文
摘要:
task1 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 t 阅读全文
摘要:
task1 line17功能是在(N2-N1+1)到N1之间随机选取一个数字 代码功能是随机生成5个学号 task2 1 #include <stdio.h> 2 int main() 3 { 4 char colour; 5 6 while (scanf("%c", &colour) != EOF 阅读全文