Кто знает С сделать задание

Fatima82 Fatima82    3   06.05.2020 14:56    0

Ответы
провривррф провривррф  14.10.2020 08:41

#include <iostream>

using namespace std;

int main()

{

setlocale(LC_ALL, "ru");

int word = 1;

bool newWord = 1;

string text = "Один Два Три";

for (int i = 0; text[i] != '\0'; i++)

{

 if (newWord)

 {

  cout << "Слово - " << word << "   Буквы - " << text[i] << "  " << text[i + 1];

  newWord = 0;

  cout << endl;

 }

 if ((int)text[i] == 32 && (int)text[i + 1] != 32)

 {

  word++;

  newWord = 1;

 }

}

return 0;

}

Объяснение:

ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика