Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed divide by 0 and updated syntax #231

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 16 additions & 8 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,26 @@ using std::endl;

int main()
{
cout << "This is Kevin!\n";
cout << "Hi, please enter two whole numbers: ";

int x,y;
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;
cout << x << "+" << y << "=" << x + y << std::endl;
cout << x << "-" << y << "=" << x - y << std::endl;
cout << x << "*" << y << "=" << x * y << std::endl;
if (y != 0)
{
cout << x << "/" << y << "=" << x / y << " with remainder of " << x % y << endl;
}
else
{
cout << "Dividing by zero is not a number." << endl;
}
cout << "The Square Root of " << x << " is " << sqrt(x) << std::endl;
cout << "The Square Root of " << y << " is " << sqrt(y) << std::endl;
cout << x << "^" << y << "=" << pow(x, y) << std::endl;

return 0;
}