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 do while statement in Java

7 Answers

0 votes
package javaapplication1;

public class Example {
    public static void main(String[] args) {
			
        int i = 1;
 	    do {
              System.out.println(i);
              i++;
 	    } while (i <= 10);
    }
}


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

 



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

public class Example {
    public static void main(String[] args) {
			
        int i = 10;
 	    do {
              System.out.println(i);
              i--;
	    } while (i > 0);
    }
}


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

 



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


/*
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;
            do {
                System.out.println(i);
                i++;
            } while (i < 5);

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

/*
             
run:

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 = -3;
            do {
                System.out.println(i);
                i++;
            } while (i < 5);

        } 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;
            do {
                System.out.println(i);
            } while (i++ < 5);

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

/*
             
run:

1
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;
            do {
                System.out.println(i);
            } while (++i < 5);

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

/*
             
run:

1
2
3
4
    
 */

 



answered Dec 1, 2016 by avibootz

Related questions

1 answer 185 views
1 answer 138 views
2 answers 220 views
220 views asked Jun 14, 2016 by avibootz
1 answer 129 views
129 views asked Jun 14, 2019 by avibootz
1 answer 212 views
8 answers 530 views
530 views asked Jan 13, 2016 by avibootz
1 answer 110 views
110 views asked Nov 28, 2022 by avibootz
...