![]() |
#2
rjsp2019-07-31 08:29
|
#include "stdafx.h"
#include<iostream>
#include<iomanip>
using namespace std;
#define max(a,b) ((a)>(b)?(a):(b))
int _tmain(int argc, _TCHAR* argv[])
{
int m=0,n=0;
cout<<max(m,++n)<<endl;
return 0;
}
输出结果为什么是2,而不是1