Есть ответ 👍

К какому виду антивирусных программ относится Аvast?

245
386
Посмотреть ответы 1

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

1castiel03
4,7(47 оценок)

#include <iostream>

#include <string>

#include <windows.h> // Для ввода русских слов

using namespace std;

int main() {

       setlocale(0, "RU");

SetConsoleOutputCP(1251);

SetConsoleCP(1251);

string text;

getline(cin, text);

cout << text[0];

for (int i = 0; i < text.length(); i++) {

 if (text[i] == ' ') {

  cout << text[i + 1];

 }

}

return 0;

}

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