| ny24gray (27) | |
| How can I write a program that loops forever (infinite loop) printing the letter "a", using a while loop? | |
|
|
|
| Fovv (47) | |
|
while(this statement is true) do this should be fairly straight forward as to what you need. | |
|
|
|
| ny24gray (27) | |
|
Right direction? int iii = 0; while (iii < 10) cout << iii << "a "; | |
|
|
|
| SamuelAdams (192) | |||
| |||
|
|
|||
| SKZ81 (6) | |
while(1) {/*code*/}or even more explicit while(true) {/*code*/}
| |
|
|
|