主题:using namespace std; 作何解??在下面程序中
#include "stdafx.h"
# include<iostream>
using namespace std;
class date
{
int yy;
int mm;
int dd;
public:
void set(int a,int b,int c);
void print(int a);
};
void date::set(int a,int b,int c)
{
yy=a;
mm=b;
dd=c;
}
void date::print(int a)
{
if(a==1)
{
if(yy<10)
cout<<'0'<<yy<<'.'<<mm<<'.'<<dd;
else
cout<<yy<<'.'<<mm<<'.'<<dd;
}
else if(a==2)
{
if(yy<10)
cout<<mm<<'/'<<dd<<'/'<<'0'<<yy;
else
cout<<mm<<'/'<<dd<<'/'<<yy;
}
else if(a==3)
{
if(yy<10)
cout<<dd<<'-'<<mm<<'-'<<'0'<<yy<<endl;
else
cout<<dd<<'-'<<mm<<'-'<<yy<<endl;
}
else
cout<<"显示为空!!\n";
}
void main(int argc, char* argv[])
{
date p;
int i,j,k;
int a;
cout<<"请输入日期:\n";
cout<<"年(>0):"<<endl;
cin>>i;
cout<<"月(0-12):"<<endl;
cin>>j;
cout<<"日(0-31):"<<endl;
cin>>k;
if(i<0||j>12||j<0||k<0||k>31)
cout<<"输入错误!!\n";
else
{
p.set(i,j,k);
cout<<"中国时间请选择1"<<endl
<<"美国时间请选择2"<<endl
<<"欧洲时间请选择3"<<endl;
cout<<"请输入您的选项:\n";
cin>>a;
p.print(a);
}
}