qq_Cat先森_0
2018-01-26 16:57
#include <stdio.h>
int main()
{
int x = 100;
printf("x=%d\n",++x);
printf("x=%d\n",x++);
printf("x=%d\n",x--);
printf("x=%d\n",--x);
printf("x=%d\n",x+1);
printf("x=%d\n",x);
return 0;
}
因为在--x的上一个运算中得到的x的值为101
每次运算x的值都会变的,
第一条程序 x值为101 第二条 102 第三条 101 第四条 100 所以X输出还是 100
C语言入门
926026 学习 · 20793 问题
相似问题