-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsum sub in.cpp
64 lines (64 loc) · 1.28 KB
/
sum sub in.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
#include<iostream>
#include<iomanip>
//function prototype
using namespace std;
float sum(float a,float b);
float sub(float a,float b);
float mul(float a,float b);
float div(float a,float b);
int main()
{
float x,y;
char z;
int i;
for(i=0; i<100; i++)
{
cout<<"enter num1: ";
cin>>x;
cout<<"\nenter num2: ";
cin>>y;
cout<<"\nenter operator: ";
cin>>z;
//#include<iomanip> needs to be added
cout<<setprecision(2)<<std::fixed;//needs to specify only once
switch(z)
{
case '+':
cout<<"sum: "<<sum(x,y)<<endl;
break;
case'-':
cout<<"sub: "<<sub(x,y)<<endl;
break;
case'*':
cout<<"Mul: "<<mul(x,y)<<endl;
break;
case'/':
cout<<"div: "<<div(x,y)<<endl;
break;
default:
cout<<"invalid input";
break;
if(z=0)
{
break;
}
}
}
return 0;
}
float sum(float a,float b)
{
return a+b;
}
float sub(float a,float b)
{
return a-b;
}
float mul(float a,float b)
{
return a*b;
}
float div(float a,float b)
{
return a/b;
}