如何让程序逐步输入,最后输出?
我想实现用户分别输入“姓名,出生年月,ID”最后集中输出。可是下列代码却实现不了ID输入,求助!#include<iostream>
using namespace std;
void main()
{
char name;
char time[12];
char ID[20];
cout<<"请输入您的名字"<<".\n";
cin>>name;
cout<<"请输入您的出生年月日"<<endl;
cin.getline(time,12);
cout<<"请输入您的身份证号"<<endl;
cin.getline(ID,20);
cout<<"您的信息如下"<<endl;
cout<<"name"<<" time"<<" ID"<<endl;
cout<<name<< time<< ID<<".\n";
system("pause");
return ;
}