0
plz
3 Respostas
0
Forexample i want to output like this
20=divisible by five
19
18
17
16
15=divisible by five
14
13
12
11
.....up to 1
0
What is your task there ?
Can you add clear details!!!??
0
while(n>=1) {
cout<<n;
if(n % 5 == 0) {
cout<<"=divisible by five";
}
cout<<endl;
n--;
}