forked from ChicoState/MyFirstExample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
33 lines (26 loc) · 769 Bytes
/
main.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
#include <iostream>
#include <cmath>
<<<<<<< HEAD
using std::cin;
using std::cout;
using std::endl;
=======
>>>>>>> f04e00c410c940703c0714e7d3cb7d1fc814eccf
int main()
{
cout<<"Hi, please enter two whole numbers: ";
int x,y;
cin >> x >> y;
if (y == 0) {
std::cerr << "Error: Division by 0 not possible" << endl;
return 0;
}
std::cout << "Addition: " << x + y << std::endl;
std::cout << "Subtraction: " << x - y << std::endl;
std::cout << "Multiplication: " <<x * y << std::endl;
std::cout << "Division: " << x / y << std::endl;
std::cout << "Remainder: " <<x % y << std::endl;
std::cout << "Square Root: " << sqrt(x) << std::endl;
std::cout << "Square: " << pow(x, y) << std::endl;
return 0;
}