weixin_慕婉清4468092
2020-08-30 18:27
#include <stdio.h>
int main()
{
int x = 0;
printf("x=%d\n",x++);
printf("x=%d\n",++x);
return 0;
}
括号内的代码必须完整的重新敲一遍,如果只是修改后面的代码,系统检测会出错。
这个不就是原本的代码?运算结构不是1吗
我直接复制粘贴你的代码可以通过
C语言入门
926021 学习 · 20793 问题
相似问题
回答 1
回答 4
回答 3