-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhex.CPP
89 lines (39 loc) · 4.04 KB
/
hex.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
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
/* HEXA-DECIMAL ADDITION AND MULTIPLICATION */
#include<iostream.h>
#include<conio.h>
void main()
{
int n1,n2,ans;
clrscr();
cout<<"Enter two hexadecimal numbers ";
cin>>hex>>n1;
cin>>hex>>n2;
char op;
cout<<"Enter operator ";
cin>>op;
switch(op)
{
case '+':
ans=n1+n2;
cout<<"The result is "<<hex<<ans;
break;
case '*':
ans=n1*n2;
cout<<"The result is "<<hex<<ans;
break;
default:
cout<<"Invalid Operator";
break;
}
getch();
}
/* OUTPUT - 1
Enter two hexadecimal numbers 16F 4A2
Enter operator +
The result is 611
*/
/* OUTPUT - 2
Enter two hexadecimal numbers 25 3A
Enter operator *
The result is 862
*/