Practice With Java -02
In This Practice With Java Series . We will practice some Programming Problem with Java .
We will give you a Code. You have to understand the code and Complete The Task (HW) Under Below The post. Summit the code of HW to The link which is added in the post ..
Integer inputting Java Program :
//Code In Java
import java.util.Scanner;
class MainClass{
public static void main(String[] args){
int value;
Scanner input=new Scanner(system.in) ;
value = input.nextInt() ;
System.out.println("Input is : "+value);
}
}
Input :
10
Output :
Input is : 10
Now your Task is Write a Code in Java Which get to Two integer number input and print The input number ...
Summit your Code
Comments
Post a Comment