Текст вводится из консоли, символ, который будет искать, также вводится из консоли
Объяснение:
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
char a;
string text;
int count = 0;
cin >> text;
cin >> a;
for (int i = 0; i < text.length(); i++)
if (text[i] == a)
count++;
}
cout << count;
Текст вводится из консоли, символ, который будет искать, также вводится из консоли
Объяснение:
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
char a;
string text;
int count = 0;
cin >> text;
cin >> a;
for (int i = 0; i < text.length(); i++)
{
if (text[i] == a)
{
count++;
}
}
cout << count;
}