Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Compile and Execute Java8 Online

// Print and Println Assignment
/*
    Created By: Ryan Arokia-Raj
    Date created: 09/7/2017
*/
public class Main {
    public static void main(String[] args) {
        System.out.println("    O    D");
        System.out.println("      L    L");
        System.out.println("    L    R");
        System.out.println("      E    O");
        System.out.println("    H   W");
        System.out.println("*****************");
        System.out.println("**         I   **");
        System.out.println("**  J     S    ****");
        System.out.println("**    A        **  **");
        System.out.println("**   V     H   **   **");
        System.out.println("**    A   O    **   **");
        System.out.println("**         T   **  **");
        System.out.println("**             ** **");
        System.out.println("**             ****");
        System.out.println("*****************");
    }
}

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.