| Lab | Assigned | Due (in class) |
||
|---|---|---|---|---|
| 11 | Sep | 18 | Sep | |
func1() {
if (p) {
a;
if (q) {
b;
}
else {
c;
if (r) {
d;
}
else {
e;
}
}
f;
}
else {
g;
}
h;
}
func2() {
while(p) {
while(q) {
while(r) {
a;
}
}
}
}
func3() {
repeat
repeat
repeat
a;
until(r)
until(q)
until(p)
}
func4() {
try {
a;
b;
c;
}
catch (Except1) {
d;
}
catch (Except2) {
e;
}
finally {
f;
}
}