Untitled

Anonymous
plain_text
12/01/2022 5:25 PM
800 B
15
Indexable
#include <iostream>
using namespace std;

struct sosamba
{
    string gender;
    int age;
    int height;
};
int main()
{
    setlocale(LC_ALL, "Russian");
    sosamba a;
    cout << "Введите пол Гномика (на англ): ";
    cin >> a.gender;
    cout << "Введите возраст Гномика: ";
    cin >> a.age;
    cout << "Введите рост Гномика: ";
    cin >> a.height;

    cout << endl << "Данные гнома" << endl << "Пол: " << a.gender << endl << "Возраст: " << a.age << endl << "Рост: " << a.height;
}
Editor is loading...