diff --git a/exercise1 b/exercise1 index 2536c77..0c00255 100644 --- a/exercise1 +++ b/exercise1 @@ -6,7 +6,6 @@ | |___ ___) | | / __/| |_| | | (_) | |_____|____/___| |_____|\___/|_|\___/ - */ public class exercise1 { @@ -15,32 +14,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 = "Jacob"; + String favFood = "Pasta"; //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.30; //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 firstInitial = 'j'; +char lastInitial = 'c'; //Run this file after making changes and see what you have!