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 202 views
1 answer 227 views
7 answers 480 views
480 views asked Jan 13, 2016 by avibootz
2 answers 283 views
1 answer 141 views
1 answer 211 views
2 answers 205 views
...