Untitled
unknown
plain_text
3 years ago
613 B
5
Indexable
#include <iostream>
#include <string>
using namespace std;
int main() {
string a;
cout << "Vvedite imya: ";
cin >> a;
int b;
cout << "Vvedite vozrast: ";
cin >> b;
int c;
cout << "Vvedite rost: ";
cin >> c;
string d;
cout << "Vvedite cvet volos: ";
cin >> d;
cout << "\n";
cout << "Privet," << a << "\n";
cout << "\n";
cout << "Vasha anketa:" << "\n";
cout << "\n";
cout << "Imya: " << a << "\n";
cout << "Vozrast: " << b << "\n";
cout << "Rost: " << c << "\n";
cout << "Cvet volos: " << d << "\n";
}Editor is loading...