Print the results of 5 simple math operations to the screen; then answer a few questions related to variables.
Textbook: 2.1 - 2.4
New concepts: Literals, data types, variables, assignment, initialization, string concatanation, simple math operators.
Create a class named UsernameA01a in a file named UsernameA01a.java
. Remember to replace Username with your actual UH username.
In the main
method, do the following:
First, create (that is, declare and initialize) two int
variables to hold two whole numbers. Print these to the screen so that your output looks something like this:
First number: 5 Second number: 2
Now print the results of using these two variables in five different math expressions using the +, -, *, /, and % operators. Don't just print out the result though; also print out what the expression is. So your final output should now look like this:
First number: 5 Second number: 2 5 + 2 = 7 5 - 2 = 3 5 * 2 = 10 5 / 2 = 2 5 % 2 = 1
In all your calculations and printing, use the two variables you declared at the beginning of your program. So, for example, in producing the above output, the number 5
and the number 2
each occur only once in my code--when I initialize my two variables. You can check you have this correct by changing the initial values of your variables to 17 and 3 and all your output should change appropriately. (Change them back to 5 and 2 when you're done though.)
You may use more than two variables if you like. For instance, you might want a variable that holds the result of each operation until you print it out. (However, the literals 5 and 3 must still only occur once each in your code.)
Now that you have written your program, change the values assigned to your two variables in order to answer the following questions. Remember to recompile each time you change your code, and to change your code back to its original form after each question. You may also need to look in your book to learn more.
Save your answers in a plain text file with a .txt
extension.
When you are done answering these questions, set your two variables back to 5 and 2, so that your program produces output as shown above.
Part A01a: Upload your UsernameA01a.java
file to Tamarin.
Part A01b: Upload your UsernameA01b.txt
file to Tamarin.
5 - 2 = 3
will actually show up in your output. However, the numbers (5 and 2, in this case) should each only occur once in your code.
System.out.println("5 + 2 = ");
But this alone doesn't work, since now, if you change the value of your variables, you need to go through every line of your code changing all the the 5
s and 2
s. So how do you print out "5 + 2 = "
, but replace the 5 and 2 in your code with the appropriate variable names? (Hint: string concatanation.)