Відповідь:
#include <iostream>
using namespace std;
bool checknumb(int number,int finddigit){
while(number){
int x = number % 10;
number /= 10;
if(x == finddigit){
return true;
}
return false;
int main(){
setlocale(LC_ALL , "Rus");
int H,find,number;
cout << "Введите число H: ";
cin >> H;
cout << "Введите цифру которую ищем: ";
cin >> find;
if(checknumb(H,find) == true){
cout << "В числе " << H << " есть цифра " << find << endl;
else{
cout << "В числе " << H << " нет цифры " << find << endl;
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:
#include <iostream>
using namespace std;
bool checknumb(int number,int finddigit){
while(number){
int x = number % 10;
number /= 10;
if(x == finddigit){
return true;
}
}
return false;
}
int main(){
setlocale(LC_ALL , "Rus");
int H,find,number;
cout << "Введите число H: ";
cin >> H;
cout << "Введите цифру которую ищем: ";
cin >> find;
if(checknumb(H,find) == true){
cout << "В числе " << H << " есть цифра " << find << endl;
}
else{
cout << "В числе " << H << " нет цифры " << find << endl;
}
return 0;
}