-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask.cpp
More file actions
46 lines (38 loc) · 844 Bytes
/
Copy pathtask.cpp
File metadata and controls
46 lines (38 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include<vector>
#include<cmath>
#include<algorithm>
#include <string>
#include<iostream>
#include<iomanip>
#include<stack>
#include<array>
#include <set>
#include<queue>
#include<unordered_map>
#include<unordered_set>
#include <bits/stdc++.h>
using namespace std;
static int counter=0;
void splitNumber(string number){
cout<<number[counter]<<" ";
counter++;
if(counter==number.length()-1)return;
splitNumber(number);
}
void printnum(int num){
int number;
cin>>number;
string string_number=to_string(number);
splitNumber(string_number);
cout<<string_number[string_number.length()-1]<<endl;
counter=0;
if(num==1)return;
printnum(num-1);
}
//O(n)
int main(){
int number;
cin>>number;
printnum(number);
return 0;
}