Create 1867.cpp

pull/45/head
Kirigaya Kazuto 2016-10-24 17:01:23 +08:00 committed by GitHub
parent cbdde333e2
commit e8d029c4c3
1 changed files with 14 additions and 0 deletions

14
QUSTOJ/1867.cpp Normal file
View File

@ -0,0 +1,14 @@
#include <iostream>
#include <string>
using namespace std;
int main()
{
string a,b,c,d,e,f;
cin>>a>>b>>c>>d>>e>>f;
cout<<"Num:"<<a<<endl;
cout<<"Sex:"<<b<<endl;
cout<<"Birth Date:"<<c<<" "<<d<<" "<<e<<endl;
cout<<"ID:"<<f<<endl;
return 0;
}