摘要:
任务1: #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", sizeof(x)); 阅读全文
摘要:
任务一: #include <stdio.h> char score_to_grade(int score); int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = score_to_grade 阅读全文
摘要:
任务1 1.rand()函数会生成一个伪随机整数。rand() % (N2 - N1 + 1)这部分会生成一个在0到N2 - N1范围内的随机数。再加上N1,就使得随机数的范围变为N1到N2。 2.rand()生成伪随机整数。rand() % N3会生成一个在0到N3 - 1范围内的随机数。再加上1 阅读全文