Computer Science, asked by babumoshai084, 14 days ago

Make a class and send hello to your friend.

in java ​

Answers

Answered by CoolorFoolSRS
1

public class MyClass {

       public static void main(String[] args) {

               System.out.println("Hello, Friend!");

       }

}

Make sure to name your file as MyClass.java

Similar questions