A java program to find the no.s divisible by 18 smaller than 100 using do-while loop
Answers
Answered by
0
here i write a code fragment fill yourself the remainings:
int i=0;
while(i<100) {
if(i%18==0) {
System.out.print(i+" ");
}
}
Answered by
0
Question: What is Economic Development of Graduation?
Similar questions