#include <iostream>
#include<string>
using namespace std;
int main (){
string myName,livein,howold,myfather,mymother;
cout << "What's your name? ";
getline (cin,myName);
cout << "Where do you live? ";
getline (cin,livein);
cout << "How old are you? ";
getline (cin,howold);
cout << "Who is your father? ";
getline (cin,myfather);
cout << "WHO is your mother? ";
getline (cin,mymother);
cout<<" My name is " <<myName <<".";
cout << " I live in " <<livein <<".";
cout << " I am 22 years old "<<".";
cout << " My Father's name is " <<myfather <<".";
cout << " My Mother's name is " <<mymother <<".";
return 0;
}
Walang komento:
Mag-post ng isang Komento