慕码人0315
2019-02-17 19:57
...
#include <stdio.h>
int main()
{
int x = 10;
int y = 10;
x =x*2;
y *=2;
printf("x=%d\n", x);
printf("y=%d\n", y);
return 0;
}这样才对了,硬性规定很难受
你不是写上代码后,注释跑到另一层了,调回同一层就好了
硬性要求,你一定得按他的方法做
运行是正确的 估计是题有bug吧。
C语言入门
926025 学习 · 20793 问题
相似问题