Sum the odd integers between 1 and 99 using a for statement. Use the unsigned int variables sum and count.

a) The default case is required in the switch selection statement.

```
unsigned int sum{0};
for (unsigned int count{1}; count <= 99; count += 2) {
sum += count;
}

```

Computer Science & Information Technology

You might also like to view...

The ________ key darkens the screen during a presentation

A) B B) Esc C) F12 D) D

Computer Science & Information Technology

When a(n) ________ function is nested in the logical_test argument of an IF function, both logical tests need to be TRUE for the [value_if_true] argument to be returned

Fill in the blank(s) with correct word

Computer Science & Information Technology