Do Programming Challenge #1: RainFall Class on page 537 of your textbook.
Duplicate the sample session exactly. n.m indicates user input.
Please enter the inches of rainfall for all 12 months of the year, beginning with January January:1.2February:3.5March:3.6April:2.1May:6.5June:2.6July:1.0August:1.6September:-3.5Rainfall must be 0.0 inches or more, Please re-enter:2.3October:3.1November:3.1December:2.5Total rainfall for the year: 33.10 inches Average rainfall for this year: 2.76 inches Month with the most rain was: May with 6.50 inches Month with the least rain was: July with 1.00 inches
Read through the Java Programming Style Guide for expectations.
Begin every java file with the following file header:
//***********************************************************************
// Project: Program 1
// Account: cs11102_nn
//
// Author: Place your name here
// Creation date: 10/27/2004
//
// Completion time: n hours total
//
// Honor Code: I pledge that this program represents my own program code.
// I received help from (no one) in designing and debugging my program.
//***********************************************************************
Use jGRASP's Control Structure Diagram (CSD) for indentation. Print your source code with CSD and line numbers.
Driver.java and RainFall.java stapled together with file header comments on both printoutsu:\Program1\ folder50 points maximum
RainFall class is defined correctly with
Driver main method uses the Rainfall object correctly (1) U:\Program1\ created correctly on your network U: drive and project files saved correctly in U:\Program1\ folder (2)