Есть ответ 👍

Информатика перевод целых чисел из одной системы счисления в другую​

251
357
Посмотреть ответы 1

Ответы на вопрос:


#include <iostream>

#include <string>

#include <windows.h>

using namespace std;

int main() {

setlocale(0, "RU");

SetConsoleOutputCP(1251);

SetConsoleCP(1251);

string *text = new string[3];

getline(cin, text[0]);

getline(cin, text[1]);

getline(cin, text[2]);

system("cls");

cout << text[2] << endl << text[1] << endl << text[0];

return 0;

}

Популярно: Информатика