Muhaiminur
5/12/2017 - 11:16 AM

Helloworld.java

/*Draw the flowchart of a program that reads one number from the user, and prints it back to show which number was entered by the user.*/
import java.util.Scanner;
public class Lab01task1{
  public static void main(String[]args){
    Scanner abir=new Scanner(System.in);
    System.out.println("ENTER YOUR NUMBER");
    int num=abir.nextInt();
    System.out.println("apnar number ti= "+num);
  }
}