Question: (Correct the Code Errors) Identify and correct the error(s) in each of the following: a) if ( age >= 65 ); cout < < Age
(Correct the Code Errors) Identify and correct the error(s) in each of the following: a) if ( age >= 65 ); cout << "Age is greater than or equal to 65" << endl; else cout << "Age is less than 65 << endl"; b) if ( age >= 65 ) cout << "Age is greater than or equal to 65" << endl; else; cout << "Age is less than 65 << endl"; c) unsigned int x = 1; unsigned int total; while ( x <= 10 ) { total += x; ++x; } d) While ( x <= 100 ) total += x; ++x; e) while ( y > 0 ) { cout << y << endl; ++y; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
