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)

Billboard image

Create up to 10 Postgres Databases on Neon's free plan.

If you're starting a new project, Neon has got your databases covered. No credit cards. No trials. No getting in your way.

Try Neon for Free →

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay