From 9b03671e49798de1f50d149b24d60291d29fc990 Mon Sep 17 00:00:00 2001 From: Brett Bender Date: Wed, 28 Sep 2022 14:18:43 -0500 Subject: [PATCH] update lab 2 --- LAB-2/Lab2/MessageOutput.java | 27 ---------------- LAB-2/Lab2/RectangleValues.java | 57 --------------------------------- LAB-2/Lab2/Stones.java | 46 -------------------------- 3 files changed, 130 deletions(-) delete mode 100644 LAB-2/Lab2/MessageOutput.java delete mode 100644 LAB-2/Lab2/RectangleValues.java delete mode 100644 LAB-2/Lab2/Stones.java diff --git a/LAB-2/Lab2/MessageOutput.java b/LAB-2/Lab2/MessageOutput.java deleted file mode 100644 index 074240a..0000000 --- a/LAB-2/Lab2/MessageOutput.java +++ /dev/null @@ -1,27 +0,0 @@ -package uwstout.courses.cs144.labs.lab2; - -/** - * This outputs a message that tests your ability to escape strings. - * - * @author Brett Bender - * @version 2022.09.20 - * - */ -public class MessageOutput { - - /** - * This outputs a message that tests your ability to escape strings. - * - * @param args The command line arguments (not used) - */ - public static void main(String[] args) { - System.out.println("\tIn Windows, putting the path to a file into the code is a little"); - System.out.println("difficult as each \"\\\" in the path must be escaped. So, if your"); - System.out.println("file is located at C:\\temp\\data.csv, then you would need to"); - System.out.println("escape it so that it looks like C:\\\\temp\\\\data.csv. It is also"); - System.out.println("good practice to put \"'s around the path. This avoids problems"); - System.out.println("with spaces in the file name or the path. The \"'s would have"); - System.out.println("to be escaped as well."); - } - -} diff --git a/LAB-2/Lab2/RectangleValues.java b/LAB-2/Lab2/RectangleValues.java deleted file mode 100644 index 962dfb7..0000000 --- a/LAB-2/Lab2/RectangleValues.java +++ /dev/null @@ -1,57 +0,0 @@ -package uwstout.courses.cs144.labs.lab2; - -import java.util.Scanner; - -/** - * This computes the area and perimeter of a rectangle given the rectangle's - * length and width. - * - * @author turners - * @version 1.0 - * - */ -public class RectangleValues { - - /** - * This computes the area and perimeter of a rectangle given the rectangle's - * length and width. - * - * - * @param args Command line arguments (not used) - * - * - * Input: (length: 10, width: 10) Expected: (perim: 40, area: 100) - * - * Input: (length: 0, width: 9) Expected: (perim: 18, area: 0) - * - * Input: (length: -2, width: 4) Expected: (perim: 4, area: -8) - * - * - * - */ - public static void main(String[] args) { - double length; - double width; - double perimeter; - double area; - - // Create an object to read in data from the keyboard - Scanner scan = new Scanner(System.in); - // prompt for and read in length and width - System.out.println("Enter the length of the rectangle: "); - length = scan.nextDouble(); - - System.out.println("Enter the width of the rectangle: "); - width = scan.nextDouble(); - - // compute perimeter and area - perimeter = 2 * (length + width); - area = length * width; - - // output results - System.out.println("For a " + length + " x " + width + " rectangle, the perimeter is " + perimeter - + " and the area is " + area + "."); - - scan.close(); - } -} diff --git a/LAB-2/Lab2/Stones.java b/LAB-2/Lab2/Stones.java deleted file mode 100644 index fda9216..0000000 --- a/LAB-2/Lab2/Stones.java +++ /dev/null @@ -1,46 +0,0 @@ -package uwstout.courses.cs144.labs.lab2; - -import java.util.Scanner; - -/** - * Reads in a value (in stones) and converts it to ounces. - * - * @author Brett Bender - * @version 2022.09.20 - */ -public class Stones { - - private static final int STONE_POUNDS_CF = 14; - private static final int POUNDS_OUNCES_CF = 16; - private static final int STONE_OUNCES_CF = STONE_POUNDS_CF * POUNDS_OUNCES_CF; - - /** - * Reads in a value (in stones) and converts it to ounces. - * - * @param args Command line arguments (not used) - * - * - * Input: 2 stones Expected: 448 ounces - * - * Input: -1 stones Expected: -224 ounces - * - * Input: 0 stones Expected: 0 ounces - */ - public static void main(String[] args) { - Scanner scan = new Scanner(System.in); - - System.out.println("How heavy is the object in stones?"); - - // Read in the weight in stones - int stonesIn = scan.nextInt(); - - // Calculate the weight in ounces - int ouncesOut = stonesIn * STONE_OUNCES_CF; - - // Output it to the user - System.out.printf("%d stones in ounces is %d ounces.\n", stonesIn, ouncesOut); - - scan.close(); - } - -}