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
Latest commit
25 lines (20 loc) · 572 Bytes
/
Copy pathmain.cpp
File metadata and controls
25 lines (20 loc) · 572 Bytes
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
#include<iostream>
#include<cmath>
using std::endl;
using std::cin;
using std::cout;
intmain()
{
cout << "THE FIRST EXAMPLE MATH DISPLAY!\n";
cout << "Hi, please enter two whole numbers: ";
int x,y;
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;
return0;
}