摘要: 最近看到这么一段代码:代码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 阅读(411) 评论(0) 推荐(0) 编辑