import java.io.PrintStream; import java.util.Scanner; import type.lib.ToolBox; /** * This app implements a solution to Exercise Check00A on p. 40 of Java By Abstraction. * * @author [INSERT YOUR NAME/STUDENT NUMBER HERE] * */ public class Check00A { public static void main(String[] args) { PrintStream output = System.out; Scanner input = new Scanner(System.in); /* * Step 1: Follow Lab 1, L1.2 "A eCheck Tutorial" on p. 40 of * the Java By Abstraction textbook. * * Step 1 is already partially done for you (since this app is already * created for you under the name 'Check00A' * * You need to add the println statements as specified. * * Do steps 2 and 3. * * Now we will complete step 4. * * The TA will lead you through the steps, which are basically: * * 1. Launch the Terminal app * * 2. navigate to the subdirectory that contains Check00A.java * * cd workspace/1720W17Lab2Exercises * * 3. invoke the eCheck program on your solution * * java eCheck 00A * * Complete steps 5, 6. */ /* * Step 2: Submit Check00A for marks. * * Follow the steps in L1.3 * * The URL of the eCheck server is: * http://www.cse.yorku.ca/~roumani/type/ec/ec1720.cgi * * Use your EECS account credentials (login/password). * * When you invoke 'java Options' be sure to do so in the XTerm window. * * This step has been completed when you see the following line of * feedback from eCheck: * * "* Your app has been successfully checked and recorded." * * You can also check ePost to see whether your submission has been * received. * * DUE DATE: 11:59pm, Monday Jan 23rd. * */ } }