摘要:
最近看到这么一段代码:代码1.cpp:#include <iostream>using namespace std;int a=4;int main(){ a+=a++; cout<<a<<endl; return 0;}输出结果:===============================================================代码2.cpp#include <iostream>using namespace std;int a=4;int main(){ a+=++a; cout<<a<<en 阅读全文
posted @ 2011-10-27 00:25
Lesterwang
阅读(425)
评论(0)
推荐(0)

浙公网安备 33010602011771号