#include using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int argc, char** argv) { //目的:比較:a++,++a在運算式中代表的不同意義 //1.運算式1 int a1 = 3; int b1 = 6; a1 = a1 + 1; int c1 = a1 + b1; cout<<"a1 = "<