Untitled

 avatar
unknown
plain_text
2 years ago
443 B
6
Indexable
#include <iostream>
using namespace std;
int main()
{
	
	string a, c;
	int b, d;
	cout << "Enter your Name: ";
	cin >> a;
	cout << "Enter your Age: ";
	cin >> b;
	cout << "Enter your Hair Color: ";
	cin >> c;
	cout << "Enter your Height: ";
	cin >> d;
	cout << "questionnaire:" << "\n";
	cout << "Name: " << a << "\n";
	cout << "Age: " << b << "\n";
	cout << "Hair Color: " << c << "\n";
	cout << "Height: " << d << "\n";
}
Editor is loading...