Write java code to print the following output
Hello, How
Are
you.
Answers
Answered by
1
Answer:
class Hello {
public static void main(String[] args) {
System.out.println("Hello, How are you");
}
}
Similar questions