From abe4726d84fb9fc2147e24ac69a4803de85bc5e8 Mon Sep 17 00:00:00 2001 From: NobleNord <40902030+NobleNord@users.noreply.github.com> Date: Mon, 9 Jul 2018 17:06:31 -0500 Subject: [PATCH] Update exercise1 --- exercise1 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/exercise1 b/exercise1 index 2536c77..2bc5979 100644 --- a/exercise1 +++ b/exercise1 @@ -15,32 +15,32 @@ public class exercise1 { //Strings are alphanumerical words that inlcude nearly any character/ //Replace this String with your name and favorite food! - String name = "TheLegend27"; - String favFood = "waffles"; + String name = "Andres Martinez"; + String favFood = "hamburgers"; //Intergers are whole numbers that are either positive or negative, or 0. //Replace this integer with your age! - int age = 46; + int age = 18; //Doubles are numbers that have decimals and are positive or negative //Replace this Double with the gas prices in Chicago -Double gasPrice = 3.48; +Double gasPrice = 3.60; //Boolean are values that are either true or false //Replace this boolean value with true or false for the following question //Are you a student at IIT? -boolean yesOrNo = false; +boolean yesOrNo = true; //Characters are values with 1 letter from A-Z and they use single quotes '' //Replace this char with your first and last initials char firstInitial = 'a'; -char lastInitial = 'z'; +char lastInitial = 'm'; //Run this file after making changes and see what you have!