摘要: 实验3 C语言分支语句、循环语句、函数综合应用编程 Task1: // 生成N个0~31之间的随机整数,并打印输出 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int x, n; 阅读全文