a) Write a Java program to display the name of three students in separate lines.
Answers
Answered by
2
Answer:
public class Exercise1 {
public static void main(String[] args) {
System.out.println("Hello\nAlexandra Abramov!");
}
}
Similar questions