Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <windows.h>
- using namespace std;
- int main()
- {
- SetConsoleOutputCP(1251);
- const int MAX = 100;
- int count{}, i{};
- char sentence[MAX]{};
- cout << "Введіть будь-яке речення: ";
- cin.getline(sentence, MAX, '\n');
- if (sentence[0] == 'b'){
- count++;
- }
- for (i = 0; i < MAX; i++) {
- if (sentence[i] == ' ' && sentence[i + 1] == 'b') {
- count++;
- }
- }
- cout << "Кількість слів, що починаються з літери b - " << count;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement