Lab 1 due by Feb. 1 11:55pm

The goal of this lab is for you to get familiar with Java and SVN, while transfering your knowledge in for loop and printing from Python (or whichever your previous programming language was) to Java.
  1. We have created a cs112 directory in your SVN repository
    https://www.cs.usfca.edu/svn/< your username>/cs112
    in class. If you have not, using a lab linux machine, start Terminal application and type
    svn mkdir https://www.cs.usfca.edu/svn/< your username>/cs112 -m "create cs112"
  2. If you wish to use your own computer, you are responsible for installing Java and SVN.
  3. Create lab1 folder on your computer.
  4. Create the following files (Sample.java and README) in lab1 folder.
    1. Write a Java program called Sample.java that prints the following pattern.
      0 1 2 3 4 5 6 7 8 9
      10 11 12 13 14 15 16 17 18 19
      20 21 22 23 24 25 26 27 28 29
      
    2. Create a Text File called README. Write 1~2 paragraphs that explains how your program works in README file. Answer the following questions in your README.
      • Did you use a for loop? If so, how many for loops did you use?
      • Can you use fewer loops?
  5. Add "lab1" folder under cs112 SVN repository. Make sure that lab1 folder in SVN has your up-to-date README and your program files.