#include int main() { int y=4,x=6,z=2; printf("%d %d %d\n",++y,--x,z++); printf("%d %d %d\n",++x,y++,z+2); getch(); return (0); } 个数要对应