 
		慕码人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语言入门
928109 学习 · 21543 问题
相似问题