-
-
5
-
7
-
18
-
2
-
2
-
9
-
13从师姐那里继承的代码,师姐上班后就消失了。自己完全搞不懂,一堆源文件头文件,不知道该怎么处理代码,怎么进行编译,有没有大佬能指导一下,我感觉没人知道我都入不了门了
-
11
-
4
-
3
-
18
-
9
-
0从键盘输入三个数,按大小对三个数的顺序进行排序。怎么做呀,刚学完分支结构(*꒦ິ⌓꒦ີ)
-
3
-
1
-
3
-
1
-
3
-
2
-
13
-
14#include<stdio.h> #include<limits.h> #include<ctype.h> int main() {int math(int a, int b, char operator); int a,b; char operator; scanf("%d",&a); operator=getchar(); while(isspace(operator)) operator=getchar(); scanf("%d",&b); printf("%d",math(a,b,operator)); return 0; } int math(int a, int b ,char operator) {int output; switch(operator) { case 1:operator=='+';output=a+b;break; case 2:operator=='-';output=a-b;break; case 3:operator=='*';output=a*b; case 4:operator=='/'; if(b=0) output=0; else output=a/b; br
-
4
-
1
-
3
-
3
-
53
-
3
-
3
-
1
-
4
-
4
-
7
-
2
-
4
-
1我一直在用vs2022,原本都用的好好的,就是这几天出现的问题主要表现为,代码没有错误,同样的代码,在别人电脑上vs2022可以运行,在我的电脑上有时候会跳过一些代码,导致最后结果错误。这是为什么啊😭😭
-
14大一新生真的要碎,这个用循环怎么弄
-
13
-
0
-
2
-
7
-
0
-
2
-
3
-
4
-
5
-
3现在c语言学到数组,后面不知道怎么学了,要不要直接做题,一边做题一边学。也不知道要不要考研,看到同学去搞蓝桥杯,焦虑拉满了。有没有大佬说法一下。