👤

3
Se da un numar intreg n. Realizati algoritmul care afiseaza un mesaj corespunzator daca
numărul este divizibil cu 10. - 5
(10 Points)
Enter your ans
Repede va rog SUNt la test


Răspuns :

Răspuns:

#include<iostream>

using namespace std;

int main()

{ int n;

cin>>n;

if(n%10==0)

cout<<" NUMARUL ESTE DIVIZIBIL CU 10";

else

cout<<" NUMARUL NU ESTE DIVIZIBIL CU 10";

return 0;

}

Explicație:

%= mod