#include <iostream>
#include <stdlib.h>
using namespace std;
int main(){
char ch;
do{
char name[10]; char tel[10];
cout<<"Name:"; cin>>name;
cout<<"Tel:";cin>>tel;
cout<<"Do you want to continou? (y/n)";
cin>>ch;
cout<<endl;
}
while((ch=='y')||(ch=='no'));
cout<<endl;
system("pause");
return 0;
}
0 Comments