/**
鏇挎崲 #include <iostream.h>
*/
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
cout << "test.";
return 0;
}
杈撳嚭test銆?br>
鍑芥暟璋冪敤錛?br>
/**
鏇挎崲 #include <iostream.h>
*/
#include <iostream>
using namespace std;
int max(int x,int y)
{
if(x > y)
return x;
else
return y;
}
int _tmain(int argc, _TCHAR* argv[])
{
int x ,y ;
x = 1000;
y = 100;
cout << max(x,y);
cout << '\n';
char * p = new char[10];
cin >> p;
delete p;
return 0;
}
瀹氫箟鍚屼箟璇嶏細
typedef int INT;
typedef double DOU;
typedef int INT;
/**
鏇挎崲 #include <iostream.h>
*/
#include <iostream>
using namespace std;
int max(int x,int y)
{
if(x > y)
return x;
else
return y;
}
int _tmain(int argc, _TCHAR* argv[])
{
INT x ,y ;
x = 1000;
y = 100;
cout << max(x,y);
cout << '\n';
char * p = new char[10];
cin >> p;
delete p;
return 0;
}

]]>