#include <iostream.h> main() { int x(0); x++; cout<<x++<<endl<<x++<<endl<<x++<<endl; cout<<x<<endl; } 为何结果是 3 2 1 4