package hlo;
public class module {
public static void main(String[] args) {
int no=1;
while(no<=25) {
System.out.print(no);
if(no%5==0)//no 5 divde number remainder 0 will them use
{System.out.println();}
no=no+1;
}
}
}
output:
12345
678910
1112131415
1617181920
2122232425
Top comments (0)