fork download
  1. /*
  2.  * Lesson 1 Coding Activity Question 1
  3.  *
  4.  * Write a program to print your name to the center of the output screen.
  5.  * Use tabs or spaces to center your output, depending on how wide your screen is.
  6.  * For the code-runner, only one tab or space will be needed for your program to
  7.  * be counted as acceptable.
  8.  *
  9. */
  10.  
  11. import java.util.Scanner;
  12. import java.lang.Math;
  13.  
  14. class Lesson_1_Activity_One {
  15. public static void main(String[] args) {
  16.  
  17. System.out.println ("Richard Howe");
  18.  
  19.  
  20. }
  21. }
Success #stdin #stdout 0.06s 32456KB
stdin
Standard input is empty
stdout
Richard Howe