InterviewSolution
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:Y-5=Y;while (x<=y); |
|
Answer» int x =10; int y=50; do { x=x+5; y=y-5; } while (x<=y); |
|