DEV Community

yaswanth krishna
yaswanth krishna

Posted on • Edited on

while loop use module

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;
    }

}
}
Enter fullscreen mode Exit fullscreen mode

output:
12345
678910
1112131415
1617181920
2122232425

Top comments (0)