Kapitel 3 Flashcards
1
if (y == 20)
x = 0;
2
if (hours > 40)
payRate *= 1.5;
3
if (sales >= 10000)
commission = 0.2;
4
if (max)
fees = 50;
5
if (x > 100) { y = 20; z = 40; }
6
if (a < 10) { b = 0; c = 1; }
7
if (myCharacter == ‘D’)
System.out.println(“Goodbye”);
8
if (x > 100)
y = 20;
else
y = 0;
9
if (y == 100)
x = 1;
else
x = 0;
10
if (sales >= 50000.0)
commission = 0.2;
else
commission = 0.1;
11
if (a < 10) { b = 0; c = 1; } else { b = -99; c = 0; }
12
1 1
13
If the customer purchases this many coupons are
this many books . . . given.
1 1
2 1
3 2
4 2
5 3
10 3
14
if (amount1 > 10) { if (amount2 < 100) { if (amount1 > amount2) System.out.println(amount1); else System.out.println(amount2); } }
15
if (x > 0) { if (y < 20) { z = 1; } else { z = 0; } }
16
Logical Expression Result (true or false)
true && false false
true && true true
false && true false
false && false false
true || false true
true || true true
false || true true
false || false false
!true false
!false true
17
T, F, T, T, T
18
if (speed >= 0 && speed );
19
if (speed < 0 || speed > 200)
System.out.println(“The number is not valid”);
20
if (name.equals(“Timothy”))
System.out.println(“Do I know you?”);
21
if (name1.compareTo(name2) < 0)
System.out.println(name1 + “ “ + name2);
else
System.out.println(name2 + “ “ + name1);
22
if (name.equalsIgnoreCase(“Timothy”))
System.out.println(“Do I know you?”);
23
a) z = x > y ? 1 : 20;
b) population = temp > 45 ? base * 10 : base * 2;
c) wages = hours > 40 ? wages * 1.5 : wages * 1;
d) System.out.println(result >=0 ? “The result is positive” :
“The result is negative”);
24
// Here is the switch statement. switch(userNum) { case 1 : System.out.println("One"); break; case 2 : System.out.println("Two"); break; case 3 : System.out.println("Three"); break; default: System.out.println("Error: invalid number."); }
25
switch(selection)
{
case ‘A’ : System.out.println(“You selected A.”);
break;
case ‘B’ : System.out.println(“You selected B.”);
break;
case ‘C’ : System.out.println(“You selected C.”);
break;
case ‘D’ : System.out.println(“You selected D.”);
break;
default : System.out.println(“Not good with letters, eh?”);
}
26
Because it uses greater-than and less-than operators in the comparisons.
27
The case expressions must be a literal or a final variable, which must be of the
char , byte , short , or int types. In this code, relational expressions are used.
28
That is serious.
29
System.out.printf(“%,.2f”, number);
30
System.out.printf(“%10.1f”, number);
31
System.out.printf(“%08.1f”, number);
32
System.out.printf(“%,10d”, number);
33
System.out.printf(“%-,20.2f”, number);
34
System.out.printf(“%20s”, name);
35
“00000.000”
36
”#.00”
37
”#,###,##0.00” or “0,000,000.00”