Computer Science, asked by ujeshindwar6, 3 months ago

Write java code to print the following output

Hello, How

Are

you.​

Answers

Answered by zezus
1

Answer:

class Hello {

public static void main(String[] args) {

System.out.println("Hello, How are you");

}

}

Similar questions