Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,851 questions

51,772 answers

573 users

How to use while statement in Java

8 Answers

0 votes
public class Example {
    public static void main(String[] args) {
             
        int i = 1;
        while (i <= 10) {
            System.out.println(i);
            i++;
        }
    }
}
 
 
 
/*
run:
  
1
2
3
4
5
6
7
8
9
10
  
*/

 



answered Jan 13, 2016 by avibootz
edited Aug 13, 2022 by avibootz
0 votes
public class Example {
    public static void main(String[] args) {
             
        int i = 10;
        while (i > 0) {
            System.out.println(i);
            i--;
        }
    }
}
 
 
 
/*
run:
  
10
9
8
7
6
5
4
3
2
1
  
*/

 



answered Jan 13, 2016 by avibootz
edited Aug 13, 2022 by avibootz
0 votes
package javaapplication1;
 
public class Example {
    public static void main(String[] args) {
             
        int i = 0;
        while (i < 10) {
            System.out.println(i + 1);
            i++;
        }
    }
}


/*
run:
 
1
2
3
4
5
6
7
8
9
10
 
*/

 



answered Jan 13, 2016 by avibootz
0 votes
package javaapplication1;

public class JavaApplication1 {

    public static void main(String[] args) {

        try {

            int i = 0;
            int j = 10;

            while (i < j) {
                i++;
                j--;

                System.out.println(i + " - " + j);
            }

        } catch (Exception e) {
            System.out.print(e.toString());
        }
    }
}

/*
             
run:

1 - 9
2 - 8
3 - 7
4 - 6
5 - 5
    
 */

 



answered Dec 1, 2016 by avibootz
0 votes
package javaapplication1;

public class JavaApplication1 {

    public static void main(String[] args) {

        try {

            while (true) {

                // random number between 0 and 1
                double d = Math.random();
                
                System.out.println(d);

                if (d >= 0.9) {
                    break;
                }
            }

        } catch (Exception e) {
            System.out.print(e.toString());
        }
    }
}

/*
             
run:

0.03887417958355743
0.9211588303344862
    
 */

 



answered Dec 1, 2016 by avibootz
0 votes
package javaapplication1;

public class JavaApplication1 {

    public static void main(String[] args) {

        try {

            int i = -3;
            while (i < 5) {
                System.out.println(i);
                i++;
            }

        } catch (Exception e) {
            System.out.print(e.toString());
        }
    }
}

/*
             
run:

-3
-2
-1
0
1
2
3
4
    
 */

 



answered Dec 1, 2016 by avibootz
0 votes
package javaapplication1;

public class JavaApplication1 {

    public static void main(String[] args) {

        try {

            int i = 1;
            while (i++ < 5) {
                System.out.println(i);
            }

        } catch (Exception e) {
            System.out.print(e.toString());
        }
    }
}

/*
             
run:

2
3
4
5
    
 */

 



answered Dec 1, 2016 by avibootz
0 votes
package javaapplication1;

public class JavaApplication1 {

    public static void main(String[] args) {

        try {

            int i = 1;
            while (++i < 5) {
                System.out.println(i);
            }

        } catch (Exception e) {
            System.out.print(e.toString());
        }
    }
}

/*
             
run:

2
3
4
    
 */

 



answered Dec 1, 2016 by avibootz

Related questions

1 answer 185 views
1 answer 212 views
7 answers 436 views
436 views asked Jan 13, 2016 by avibootz
2 answers 249 views
1 answer 123 views
1 answer 191 views
2 answers 167 views
...