My issue
How to rearrange the hello
World
Learning course: Learn Java
Problem Link: CodeChef: Practical coding for everyone
How to rearrange the hello
World
Learning course: Learn Java
Problem Link: CodeChef: Practical coding for everyone
@anshulrathod13
This will be the correct rearrangement for this problem.
import java.util.*;
class Codechef {
public static void main(String[] args) {
System.out.print("Hello");
System.out.println();
System.out.print("World");
}
}