C计算每个学生平均分,每门课程平均分和最高分的学生 ```c #include void stuava(int n, int stu[3][5]){ int i, s = 0; for(i = 0; i < 5;...
C判断一段字符串中的英文字母,数字空格和其他字符个数 ```c #include int zimu(char str[]){ int i,num=0; char j; j=str[0]; for(i=0;j!='\...
新入两个域名mylove.best,mylove.lifestyle 好听,放着吃灰,想拿来搞博客 ![porkbun][1] ![spaceship][2] [1]: https://lwcat.cn/usr/uploads/2...
用c写一个计算输入两个数的最大公约数和最小公倍数 课后作业 ```C #include int main() { int a, b, c, d,e,f; scanf("%d %d", &a, &b); if (...