Доброго времени суток, если возникнут вопросы ко коду, буду рад на них ответить
#include <iostream>
#include <string>
int main()
{
std::string str;
std::cin >> str;
int counter = 0;
for (const auto& s : str)
if (std::isdigit(s))
++counter;
}
std::cout << "There is(are) " << counter << " digit(s) in the line\n";
system("pause");
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Доброго времени суток, если возникнут вопросы ко коду, буду рад на них ответить
#include <iostream>
#include <string>
int main()
{
std::string str;
std::cin >> str;
int counter = 0;
for (const auto& s : str)
{
if (std::isdigit(s))
{
++counter;
}
}
std::cout << "There is(are) " << counter << " digit(s) in the line\n";
system("pause");
return 0;
}