-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCompare two Large Numbers .cpp
58 lines (54 loc) · 1.04 KB
/
Compare two Large Numbers .cpp
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
47
48
49
50
51
52
53
54
55
56
57
58
/*
You will be given two numbers A and B. Your task is to print 1 if A < B, print 2 if A > B
and print 3 if A = B.
*/
#include<bits/stdc++.h>
using namespace std;
void compare(string, string);
int main(){
int t;
string A, B;
cin >> t;
while(t--){
cin >> A >> B;
compare(A, B);
cout << endl;
}
return 0;
}
void compare(string A, string B){
while(1){
if(A[0] == '0')
A.erase(A.begin());
else
break;
}
while(1){
if(B[0] == '0')
B.erase(B.begin());
else
break;
}
if(A.length() > B.length()){
cout << 2;
return;
}
else if(A.length() < B.length()){
cout << 1;
return;
}
else{
for(int i = 0; i < A.length(); i++){
if((A[i] - '0') > (B[i] - '0')){
cout << 2;
return;
}
else if((A[i] - '0') < (B[i] - '0')){
cout << 1;
return;
}
}
cout << 3;
return;
}
}