InterviewSolution
Saved Bookmarks
| 1. |
The following code has error(s). Rewrite the correct code underlining all the corrections made:int a =0;int b=15;do;a = a + 3;b=b-3;while a<=b; |
|
Answer» int a = 0; int b = 15; do { a = a+3; b=b-3; } while (a<=b); |
|