Unfortunately, one does not learn programming in a week. But here is the first step, the “Hello, World!” program:

public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}

The learning resources for this week are listed in the navigation menu.