The program if the number is divisible by 2 numbers tells me only 1 | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
0

The program if the number is divisible by 2 numbers tells me only 1

#include <stdio.h> #include <iostream> #include <math.h> int main() { using namespace std; //dichiarazione variabili int a; cout<<"Inserisci numero :"; cin>>a; if (a%3==0) cout<<"e' divisibile per 3 :"; else if (a%5==0) cout<<"e divisibile per 5 :"; else if (a%7==0) cout<<"e divisibile per 7 :"; else if (a%11==0) cout<<"e divisibile per 11 :"; else if (a%13==0) cout<<"e divisibile per 13 :"; else cout<<"il nume non e' divisibile per nessuno di questi numeri"; system("Pause"); }

17th Oct 2019, 6:12 AM
panik 007
panik 007 - avatar
2 Respuestas
+ 1
What problem you are facing here. Clarify first.
17th Oct 2019, 6:48 AM
A͢J
A͢J - avatar
0
Doesn't work #include <stdio.h> #include <iostream> #include <math.h> int main() { using namespace std; //dichiarazione variabili int a; cout<<"Inserisci numero :"; cin>>a; if (a%3==0) { is_divisible true; cout < "divisible by 3\n; } if (a%5==0) { is_divisible true; cout < "divisible by 5\n; } if (a%7==0) { is_divisible true; cout < "divisible by 7\n; } if (a%11==0) { is_divisible true; cout < "divisible by 11\n; } if (a%13==0) { is_divisible true; cout < "divisible by 13\n; } if (! is_divisible) { cout < "not divisible\n; } system("Pause"); }
17th Oct 2019, 7:10 AM
panik 007
panik 007 - avatar