C计算每个学生平均分,每门课程平均分和最高分的学生 #include <stdio.h> void stuava(int n, int stu[3][5]){ int i, s = 0; for(i ...
C判断一段字符串中的英文字母,数字空格和其他字符个数 #include <stdio.h> int zimu(char str[]){ int i,num=0; char j; j=str[0]; fo...