Posts by Henryzao • 1 point
1 post
-
-2
votes4
answers9003
viewsA: Invert a 3-digit number in C
For this problem with 3 digits that is enough. #include <iostream> using namespace std; int main() { int n = 123; cout << "Valor inicial:" << n << endl; cout << "Valor…