More Conditional Expressions
All the usual arithmetic comparisons may be made in C#, but many do not use standard mathematical symbolism, mostly for lack of proper keys on a standard keyboard. (If you are looking at the following table in the html version, you need to be online and may need an up-to-date browser to see these mathematical symbols be displayed correctly, as well as the mathematical expressions later in the text. The pdf version of the book automatically shows all the right math symbolism online or offline.
Meaning |
Math Symbol |
C# Symbols |
---|---|---|
Less than |
\(<\) |
|
Greater than |
\(>\) |
|
Less than or equal |
\(\leq\) |
|
Greater than or equal |
\(\geq\) |
|
Equals |
\(=\) |
|
Not equal |
\(\neq\) |
|
There should not be space between the two-symbol C# substitutes.
Notice that the obvious choice for equals, a single equal sign, is not used to check for equality. An annoying second equal sign is required. This is because the single equal sign is already used for assignment in C#, so it is not available for tests.
Warning
It is a common error to use only one equal sign when you mean to test for equality, and not make an assignment!
Tests for equality do not make an assignment. Tests for equality can have an arbitrary expression on the left, not just a variable.
All these tests work for numbers,
and characters. Strings can also be compared, most often for
equality (==) or inequality (!=), though they also have a defined order,
so you can use <
, for instance.
Predict the results and try each line in csharp:
int x = 5;
x;
x == 5;
x == 6;
x;
x != 6;
x = 6;
6 == x;
6 != x;
"hi" == "h" + "i";
"HI" != "hi";
string s = "Hello";
string t = "HELLO";
s == t;
s.ToUpper() == t;
An equality check does not make an assignment. Strings equality tests are case sensitive.
Try this: Following up on the discussion of the inexactness of float arithmetic, confirm that C# does not consider .1 + .2 to be equal to .3: Write a simple condition into csharp to test.
Pay with Overtime Example
Given a person’s work hours for the week and regular hourly wage, calculate the total pay for the week, taking into account overtime. Hours worked over 40 are overtime, paid at 1.5 times the normal rate. This is a natural place for a function enclosing the calculation.
Read the setup for the function:
/// Return the total weekly wages for a worker working
/// totalHours with a given regular hourlyWage.
/// Include overtime for hours over 40.
static double CalcWeeklyWages(double totalHours, double hourlyWage)
The problem clearly indicates two cases: when no more than 40 hours are worked or when more than 40 hours are worked. In case more than 40 hours are worked, it is convenient to introduce a variable overtimeHours. You are encouraged to think about a solution before going on and examining mine.
You can try running the complete example program, wages1/wages1.cs, also shown below.
1using System;
2namespace IntroCS
3{
4 class Wages
5 { //heading chunk
6 /// Return the total weekly wages for a worker working
7 /// totalHours with a given regular hourlyWage.
8 /// Include overtime for hours over 40.
9 static double CalcWeeklyWages(double totalHours, double hourlyWage)
10 {
11 double totalWages;
12 if (totalHours <= 40) {
13 totalWages = hourlyWage*totalHours;
14 }
15 else {
16 double overtime = totalHours - 40;
17 totalWages = hourlyWage*40 + (1.5*hourlyWage)*overtime;
18 }
19 return totalWages;
20 }
21
22 static void Main()
23 {
24 double hours = UIF.PromptDouble("Enter hours worked: ");
25 double wage = UIF.PromptDouble("Enter dollars paid per hour: ");
26 double total = CalcWeeklyWages(hours, wage); //before chunk2
27 Console.WriteLine(
28 "Wages for {0} hours at ${1:F2} per hour are ${2:F2}.",
29 hours, wage, total);
30 } //after chunk2
31 }
32}
This program also introduces new notation for displaying decimal numbers:
Console.WriteLine(
"Wages for {0} hours at ${1:F2} per hour are ${2:F2}.",
hours, wage, total);
In the format string are {1:F2}
and {2:F2}
: Inside
the braces, after the parameter index, you see a new part,
:F2
.
The part after the colon gives additional formatting information.
In this case: Display with the decimal point
fixed (hence the F) so 2 places beyond the decimal
point are shown. Also the result is rounded.
This is appropriate for money with dollars and cents.
You can replace the 2 to display
a different number of digits after the decimal point.
More formatting syntax is introduced in Tables.
Because if
-else
statements alter the flow or execution, and altering this flow
causes lots of problems for many students, this is a good place to
play computer to illustrate clearly what is happening. We will just
concentrate on a call to CalcWeeklyWages
, where the if
-else
statement is.
Recall that to play computer,
we keep track of the state of variables while following execution carefully,
statement by statement.
The big point here is that this order of execution is not textual order!
If we are just following a call to CalcWeeklyWages
, we start at
line 9, and we will assume for example that it is called with
totalHour
as 50 and hourlyWage
as 14.00:
Line |
totalWages |
overtime |
Comment |
---|---|---|---|
9 |
- |
- |
Assume passed totalHours=50; hourlyWage=14 |
12 |
50 <= 40: false; SKIP if clause |
||
16 |
10 |
50-40=10 at start of else clause |
|
17 |
770 |
14*40 + (1.5*14)*10 = 770 |
|
19 |
return 770 to caller |
We skipped the executable line 13 in the if-true clause.
Instead suppose the function is called with
totalHour
as 30 and hourlyWage
as 14.00:
Line |
totalWages |
overtime |
Comment |
---|---|---|---|
9 |
- |
- |
Assume passed totalHours=30; hourlyWage=14 |
12 |
30 <= 40: true; continue straight |
||
13 |
420 |
14*30 = 420; SKIP else clause |
|
19 |
return 420 to caller |
We skipped the executable lines 16-17
in the if-false clause after else
.
Below is an equivalent alternative version of
CalcWeeklyWages
, used in wages2/wages2.cs. It uses just one
general calculation formula and sets the parameters for the formula
in the if
statement. There are generally a number of ways you might
solve the same problem!
1static double CalcWeeklyWages(double totalHours, double hourlyWage)
2{
3 double regularHours, overtime;
4 if (totalHours <= 40) {
5 regularHours = totalHours;
6 overtime = 0;
7 }
8 else {
9 regularHours = 40;
10 overtime = totalHours - 40;
11 }
12 return hourlyWage*regularHours + (1.5*hourlyWage)*overtime;
13}
Wages Play Computer Exercise
We played computer on the original version of CalcWeeklyWages
. Now
follow the second version above, from wages2/wages2.cs. Try it
with the same two sets of formal parameter values.
Line |
regularHours |
overtime |
Comment |
---|---|---|---|
1 |
- |
- |
Assume passed totalHours=50; hourlyWage=14 |
Line |
regularHours |
overtime |
Comment |
---|---|---|---|
1 |
- |
- |
Assume passed totalHours=30; hourlyWage=14 |
Graduate Exercise
Write a program, graduate.cs
, that prompts students for how
many credits they have. Print whether of not they have enough
credits for graduation. (At Loyola University Chicago 120 credits
are needed for graduation.)
Roundoff Exercise
In csharp declare and initialize non-zero double
variables
x
and y
. Experiment so, according to C# (and csharp): x+y == x
.
In other words, while y
is not 0, adding it to x
does not
change x
. (Hints: Note the approximate number of digits of accuracy
of a double
, and remember the power of 10 notation with E
for double
literals. See Type double and the section on limits
after it.)