A program that asks the users name, surname and age and displays them.
//A program that asks the users name, surname and age and displays them
#include <iostream>
using namespace std;
int main ()
{
string name;//stores name
string surname;//stores surname
int age;// stores age
//Asks users name, surname and age
cout << "Please enter your name: ";
cin >> name;//takes the name
cout << "Please enter your surname: ";
cin >> surname;//takes the surname
cout << "Please enter your age: ";
cin >> age;//takes the age
cout << endl;//creates the space
cout << "Name: " << name << endl;//displays the name
cout << "Surname: " << surname << endl;//displays the surname
cout << "Age: " << age << endl;//displays the age
return 0;
}
//A program that asks the users name, surname and age and displays them
#include <iostream>
using namespace std;
int main ()
{
string name;//stores name
string surname;//stores surname
int age;// stores age
//Asks users name, surname and age
cout << "Please enter your name: ";
cin >> name;//takes the name
cout << "Please enter your surname: ";
cin >> surname;//takes the surname
cout << "Please enter your age: ";
cin >> age;//takes the age
cout << endl;//creates the space
cout << "Name: " << name << endl;//displays the name
cout << "Surname: " << surname << endl;//displays the surname
cout << "Age: " << age << endl;//displays the age
return 0;
}