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
23 lines (19 loc) · 785 Bytes
/
Copy pathmain.cpp
File metadata and controls
23 lines (19 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include<iostream>
#include<cmath>
intmain()
{
std::cout << "THE FIRST EXAMPLE MATH DISPLAY!\n";
std::cout << "Hi, please enter two whole numbers (Limited to whole numbers between -2,147,483,648 and 2,147,483,647): ";
int32_t x,y;
std::cin >> x;
std::cin.clear(); // clear input buffer in case user inputs value outside expected range
std::cin >> y;
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;
return0;
}