1. Se citeste n numar natural nenul. . Sa se determine daca cifra 0 face parte din scriererea numarului n sau nu.
2. Se citeste n numar natural nenul. Sa se detrmine daca numarul este fomat doar din cifre impare sau nu..
3. Se citeste n numar natural nenul. Sa se detrmine daca n este format din cifre identice.
Răspunsuri la întrebare
Salut! Ai mai jos rezolvarea
1.
#include <iostream>
using namespace std;
int main()
{
int n;
bool ok = false;
cin >> n;
while (n > 0)
{
if (n % 10 == 0)
{
ok = true;
}
n /= 10;
}
if (ok == true)
{
cout << "DA";
}
else
{
cout << "NU";
}
return 0;
}
2.
#include <iostream>
using namespace std;
int main()
{
int n;
bool ok = true;
cin >> n;
while (n > 0)
{
if (n % 2 == 0)
{
ok = false;
}
n /= 10;
}
if (ok == true)
{
cout << "DA";
}
else
{
cout << "NU";
}
return 0;
}
3.
#include <iostream>
using namespace std;
int main()
{
int n;
bool ok = true;
cin >> n;
int c = n % 10;
while (n > 0)
{
if (n % 10 != c)
{
ok = false;
}
n /= 10;
}
if (ok == true)
{
cout << "DA";
}
else
{
cout << "NU";
}
return 0;
}