1.

Write a program in Java to input two integers or floating point numbers and display the addition.​

Answer»

PUBLIC CLASS ADD

{

public static void main(int a,int b)

{

System.out.println("ADDITION is "+(a+b));

}

}



Discussion

No Comment Found