-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDigit wise operator.cpp
More file actions
110 lines (85 loc) · 1.62 KB
/
Copy pathDigit wise operator.cpp
File metadata and controls
110 lines (85 loc) · 1.62 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/* Ashutosh Verma-ashutoshvrm8@gmail.com
*/
#include<iostream>
using namespace std;
void change(long long int num)
{
while(num>9)
num%=10;
switch(num)
{
case 0:
cout<<"zero ";
break;
case 1:
cout<<"one ";
break;
case 2:
cout<<"two ";
break;
case 3:
cout<<"three ";
break;
case 4:
cout<<"four ";
break;
case 5:
cout<<"five ";
break;
case 6:
cout<<"six ";
break;
case 7:
cout<<"seven ";
break;
case 8:
cout<<"eight ";
break;
case 9:
cout<<"nine ";
break;
}
}
int main()
{
long long int t,a,b,i,j,res,digit,p[10000],q[10000];
char ch;
cin>>t;
while(t--)
{
cin>>a>>b>>ch;
i=j=0;
while(a!=0)
{
p[i]=a%10;
i++;
a/=10;
}
while(b!=0)
{
q[j]=b%10;
j++;
b/=10;
}
if(ch=='+')
{
for(i=j-1;i>=0;i--)
{
res=p[i]+q[i];
digit=res%10;
change(digit);
}
}
else if(ch=='*')
{
for(i=j-1;i>=0;i--)
{
res=p[i]*q[i];
digit=res%10;
change(digit);
}
}
cout<<"\n";
}
return 0;
}