Except where otherwise noted, the contents of this document are Copyright 2013 Stuart Reges and Marty Stepp.
lab document created by Marty Stepp, Stuart Reges and Whitaker Brand
Goals for today:
S.o.pln()
/ S.o.p()
for System.out.println()
/ System.out.print()
.
For each expression in the left-hand column, indicate its value in the right-hand column. Be sure to list a constant of appropriate type (e.g., 7.0 rather than 7 for a double, Strings in quotes).
If you've forgotten how to tackle expressions problems, check out lab 2 for a recap!
Also, make sure you can evaluate boolean expressions.
12/5 + 8/4
|
4 |
|
2.5 * 2 + 17/4
|
9.0 |
|
41 % 15 % 7 + 17 % 3
|
6 |
|
21/2 + "7 % 3" + 17 % 4
|
"107 % 31" |
|
46/3/2.0/3 * 4/5
|
2.0 |
|
4 / 5 == 0 && 3 % 2 == 1
|
true |
|
4 % 2 != 0 && 5 == 5
|
false |
|
3 % 2 == 0 || 6 / 3 != 4
|
true |
If you finish all the exercises, try out our Practice-It web tool. It lets you solve Java problems from our Building Java Programs textbook.
You can view an exercise, type a solution, and submit it to see if you have solved it correctly.
Choose some problems from the book and try to solve them!