![]() |
#2
聋眼睛瞎耳朵2010-10-04 20:48
|
代码如下:
#include "stdafx.h"
#include "iostream"
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int y=0;
cout<<++y<<" "<<++y<<" "<<++y<<" "<<y;
return 0;
}
vs2008平台下输出结果为 3 3 3 3
那位能解释下why?