Sunday, July 16, 2017

Write a java program that displays your name

/**
 * Created by Jo on 7/10/2017.
 * For more exercises and lessons, visit http://shegertech.blogspot.com/
 * Chapter 1, Exercise 1
 */

public class Q1Solution {
    public static void main(String[] args) {
        System.out.println("Hello world, I'm Josh");
    }
}

Share: