Advertisement
Lavig

Лабораторна робота №13 (Завдання 1)

Nov 29th, 2024
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.51 KB | None | 0 0
  1. #include <iostream>
  2. #include <windows.h>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.     SetConsoleOutputCP(1251);
  9.     const int MAX = 100;
  10.     int count{}, i{};
  11.     char sentence[MAX]{};
  12.     cout << "Введіть будь-яке речення: ";
  13.     cin.getline(sentence, MAX, '\n');
  14.     if (sentence[0] == 'b'){
  15.         count++;
  16.     }
  17.     for (i = 0; i < MAX; i++) {
  18.         if (sentence[i] == ' ' && sentence[i + 1] == 'b') {
  19.             count++;
  20.         }
  21.     }
  22.     cout << "Кількість слів, що починаються з літери b - " << count;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement