摘要:
实验任务4 1.源代码 task4.c #include <ctype.h> #include <stdio.h> int main(void) { FILE *fp; int ch; int lines = 0; int chars = 0; int has_char_in_line = 0; f 阅读全文
摘要:
实验任务1 1.源代码 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main1() { int number; int i; srand(time(0)); // 以当前系统时间作为随机种子 for 阅读全文