forked from ChicoState/MyFirstExample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
20 lines (16 loc) · 645 Bytes
/
main.cpp
File metadata and controls
20 lines (16 loc) · 645 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <iostream>
#include <cmath>
int main()
{
std::cout<<"Hi, please enter two whole numbers: ";
int x,y;
std::cin >> x >> y;
std::cout << x <<"+" << y << "="<< x + y << std::endl;
std::cout << x <<"-" << y << "="<< x - y << std::endl;
std::cout << x <<"*" << y << "="<<x * y << std::endl;
std::cout << x <<"/" << y << "="<< x / y << "with a remainder of " <<x % y <<std::endl;
std::cout << "Square Root of " <<x << " is: " << sqrt(x) << std::endl;
std::cout << "Square Root of " <<y << " is: " << sqrt(y) << std::endl;
std::cout << x << "^" << y << "=" << pow(x, y) << std::endl;
return 0;
}