% cd # remember you can use ls and pwd to figure out where you are in the directory tree % cd cs21 % mkdir week2 % cd week2 % pwd # should list /home/yourusername/cs21/week2 % cp ~newhall/public/cs21/week2/* . % ls Add.java Round.java
% vim Add.java
This program sums a list of floats and rounds their sum to the nearest int. Enter -1 to signal the end of the list. Enter next value: 95.2 Enter next value: 100.7 Enter next value: 34.6 Enter next value: -1 The closest int to their sum is 230