Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
0 Endorsements
~261 People Reached
Favorite Forums
Favorite Tags
c++ x 2

2 Posted Topics

Member Avatar for xxjay922xx

int i=0; A1: cout << “I is “ << i << endl; i = i + 1; if ( i <= 10) goto A1; cout << “the loop is completed\n”; It is poorly written using goto statements; your job is to convert it into a. while-loop, b. do-while loop, c. …

Member Avatar for blackrainbowhun
-2
162
Member Avatar for Reprise

1. Below is a program written in order to compute something, there are few syntax errors, and one logical error in it. Correct them and trace the program, following the line numbering below, first for inputs: 8 and 12, then for inputs: 25 and 15, you can choose more inputs …

Member Avatar for xxjay922xx
0
99

The End.