橘涂
2018-08-30 17:13
i++和++i是一样的?感觉高中做程序框图时有区别啊
#include <stdio.h>
int main()
{
int x = 0;
printf("x=%d\n",++x-1); //输出值为0,x先自增再-1
printf("x=%d\n",x+++1);//输出值为2,x先+1再自增
return 0;
}
C语言入门
926020 学习 · 20793 问题
相似问题
回答 4
回答 2
回答 3