Untitled
unknown
plain_text
2 years ago
183 B
2
Indexable
#include <iostream> using namespace std; int main() { int A; int tempA; cin >> A; tempA = A; while (tempA > 0) { cout << tempA % 10; tempA /= 10; } }
Editor is loading...
#include <iostream> using namespace std; int main() { int A; int tempA; cin >> A; tempA = A; while (tempA > 0) { cout << tempA % 10; tempA /= 10; } }