Loops In JAVA:

import java.util.Scanner;https://youtu.be/vLqK_O3BocE
public class loops_a {
    public static void main(String[] args) {
//        Syntax
//        while (argument) {
//
//        }
//        int i = 0;
//        while (i<100){
//            System.out.println(i);
//            i++;
//        }
//        Scanner sc = new Scanner(System.in);
//        int i = sc.nextInt();
//        int n = 1;
//        while (n<=10){
//            System.out.println(i*n);
//            n++;
//        }
//        for (argument){
//        }
//        for (int i = 0; i<100; i++){
//            System.out.println(i);
//        }
//        Scanner sc = new Scanner(System.in);
//        int i = sc.nextInt();
//        for (int n = 0; n<=10; n++){
//            System.out.println(i*n);
//        }
        int i = 0;
        do {
            System.out.println(i);
            i++;
        }while (i <= 100);
    }
}

Leave a Reply

For News Subscribe Us!

Can curiosity may end shameless explained. True high on said mr on come. An do mr design at little myself wholly entire though. Attended of on stronger or mr pleasure.

You have been successfully Subscribed! Ops! Something went wrong, please try again.

© 2022 Code With AM