You are on page 1of 1

#include <iostream>

#include <string>

using namespace std;

int main() {
cout << "Enter name: ";
string name;
getline(cin, name);

cout << "What is your course? ";


string course;
getline(cin, course);

cout << "What is your major? ";


string major;
getline(cin, major);

cout << "When is your birthday (in format YYYY-MM-DD)? ";


string birthday;
getline(cin, birthday);

cout << "What is your address? ";


string address;
getline(cin, address);

cout << "What is your Motto in life? ";


string motto;
getline(cin, motto);

// Output the entered information

cout << "Name: " << name << "\n";


cout << "Course: " << course << "\n";
cout << "Major: " << major << "\n";
cout << "Birthday: " << birthday << "\n";
cout << "Address: " << address << "\n";
cout << "Motto: " << motto << "\n";

return 0;
}

You might also like