Saved Bookmarks
| 1. |
Write a while loop that display numbers from 500 to 550. |
|
Answer» int i = 500 while (i<=550) { cout<<i; i = i+1; } |
|