My issue
Rearrange the code to produce this output:
Hello
World
Learning course: Learn Java
Problem Link: CodeChef: Practical coding for everyone
Rearrange the code to produce this output:
Hello
World
Learning course: Learn Java
Problem Link: CodeChef: Practical coding for everyone
@ashu_tiwari62
The correct rearrangement would be
import java.util.*;
class Codechef {
public static void main(String[] args) {
System.out.print("Hello");
System.out.println();
System.out.print("World");
}
}