Question: (C++) The following program reads in a five-digit integer and determines whether it's a palidrome: Modify the code and get rid of the while loop
(C++)
The following program reads in a five-digit integer and determines whether it's a palidrome:

Modify the code and get rid of the while loop and only use if, if else, else statements to get the same result
#includec iostream> using namespace std; 5 int main() int num int reverse; int remainder; int numcopy 10 "Enter your 5-digit number: "; cout > num 12 13 14 15 16 17 18 19 20 21 numcopy-num reversee while (num > e) remainder-num % 10; reverse -reverse * 10 reverse-reverse + remainder num -num 10; 23 24 25 26 27 28 29 30 if (numcopyreverse) else cout
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
