Ответ:
Объяснение:
#include <iostream>
#include <string>
using namespace std;
int numberOfLettersZ(string Sentence) {
int n=0;
for (int i = 0; i < Sentence.size(); i++)
if (Sentence[i] == 'z') // Добавь " || Sentence[i] == 'Z' ", если нужно еще и большие буквы.
n++;
return n;
}
int main()
{
string firstSentence, secondSentence;
getline(cin, firstSentence);
getline(cin, secondSentence);
cout << numberOfLettersZ(firstSentence) + numberOfLettersZ(secondSentence);
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Объяснение:
#include <iostream>
#include <string>
using namespace std;
int numberOfLettersZ(string Sentence) {
int n=0;
for (int i = 0; i < Sentence.size(); i++)
if (Sentence[i] == 'z') // Добавь " || Sentence[i] == 'Z' ", если нужно еще и большие буквы.
n++;
return n;
}
int main()
{
string firstSentence, secondSentence;
getline(cin, firstSentence);
getline(cin, secondSentence);
cout << numberOfLettersZ(firstSentence) + numberOfLettersZ(secondSentence);
}