0
Where I am lag?
I can able to find out sum of digits, check prime, check palindrome etc..... But I can't able to do problems that Asks for range of output. For eg.. Printing palindrome numbers within 1000 like this..
3 ответов
+ 1
You can use the for loop and update the number for your program.
0
That too got no output i tried
0
Input from user num
While(n>0) {
Mod =num%10;
If(mod==0) {
Zeros++;
}
Num=Num/10;
}
How can I add loop for this