#include <stdio.h> int main() { int a,b,c=1,d=1; a = c++; b = ++d; printf("%d\t%d\n", a,b); return 0; } //++i是先加再使用,而i++是先使用再加 //输出结果 1 2