Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <queue>
- #include <cmath>
- #include <vector>
- using namespace std;
- void rec(int x) {
- if(x == 0) {
- return;
- }
- int cifra = x % 10;
- rec(x / 10);
- cout << cifra << " ";
- }
- int main()
- {
- rec(1234);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement