Give the output of the following expression: Class example { public static void main(String args[]) { int numl=550; double num2 =689.37; System.out.println("First Number is:" + numl); System.out.println("First Number is:" + num2);
Answers
Answered by
2
OUTPUT :
First Number is:550
First Number is:689.37
Similar questions