Computer Science, asked by Abhikmukherjee, 2 months ago

Give output:. System.out.print( "Welcome "); System.out.println("to Java")​

Answers

Answered by MrTSR
3

Your JAVA códe is incorrect!

The correct códe is ⇊

class WelcometoJava {

   public static void main(String[] args) {

       System.out.println("Welcome to Java");

   }

}

The Output is ⇊

Welcome to Java

⤴ Códe has been run in the above attachment. ⤴

Attachments:
Similar questions