-
Notifications
You must be signed in to change notification settings - Fork 377
Expand file tree
/
Copy pathmain.cpp
More file actions
49 lines (44 loc) · 1.16 KB
/
main.cpp
File metadata and controls
49 lines (44 loc) · 1.16 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
#include <iostream>
#include <cmath>
using std::cin;
using std::cout;
using std::endl;
using std::endl;
using std::cin;
using std::cout;
int main()
{
<<<<<<< HEAD
cout << "THE FIRST EXAMPLE MATH DISPLAY!\n";
cout << "Hi, please enter two whole numbers: ";
=======
cout << "THE FIRST EXAMPLE MATH DISPLAY!\n";
cout << "Hi, please enter two whole numbers: ";
>>>>>>> main
int x,y;
<<<<<<< HEAD
cin >> x >> y;
cout << "Addition: " << x + y << endl;
cout << "Subtraction: " << x - y << endl;
cout << "Multiplication: " << x * y << endl;
if ( y== 0 ) {
cout << "Divding by zero is niot a number\n";
}
else {
cout << "Division: " << x / y << endl;
}
cout << "Remainder: " << x % y << endl;
cout << "Square Root: " << sqrt(x) << endl;
cout << "Square: " << pow(x, y) << endl;
=======
cin >> x >> y;
cout << "Addition: " << x + y << endl;
cout << "Subtraction: " << x - y << endl;
cout << "Multiplication: " << x * y << endl;
cout << "Division: " << x / y << endl;
cout << "Remainder: " << x % y << endl;
cout << "Square Root: " << sqrt(x) << endl;
cout << "Square: " << pow(x, y) << endl;
>>>>>>> main
return 0;
}