Saved Bookmarks
| 1. |
The following code has error(s). Rewrite the correct code underlining all the corrections made : int x = 10; int y = 50; do; { x+5 = x; y5 = y; while ( x <= y ); |
|
Answer» int x = 10; int y = 50; do { x= x+5; y = y5; } while ( x <= y ); |
|