0
write program for finding the first number greater than 100 which is divisible by 7
4 Réponses
+ 1
thanks
0
int i = 100;
while(i % 7 != 0){
i++;
}
/* i as the value of the first number greater than 100 divisible by 7 */
0
pleasure ;)
0
Sam Pache
Don't present whole work but give hints. That's better for learning.