Muhaiminur
2/12/2018 - 5:46 PM

Print First Hundred Positive Integers.

Write a java program that prints the first Hundred positive integers.

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package BASICJAVA;

import java.util.Scanner;

/**
 *
 * @author ABIR
 */
public class First_Hundred_Positive_Integers {
    public static void main(String[]args){
        Scanner abir =new Scanner(System.in);
        for (int i = 0; i < 100; i++) {
            System.out.println(" your "+(i+1)+" positive number is "+(i+1));
        }
    }
}