forked from AdaGold/calculator
-
Notifications
You must be signed in to change notification settings - Fork 42
Lauren C calculator.rb #48
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
Open
enigmagnetic
wants to merge
1
commit into
Ada-C8:master
Choose a base branch
from
enigmagnetic:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,81 @@ | ||
| # method to ensure user has entered a valid operator | ||
| def validate_operator(operator) | ||
| valid_operators = ["+", "add", "-", "subtract", "*", "multiply", "/", "divide", "**", "exponent", "%", "modulo"] | ||
| # check input against array of operators, strip of any whitespace characters | ||
| until valid_operators.include?(operator) | ||
| puts "That is not a valid operator. This calculator accepts add (+), subtract (-), multiply (*), divide (/), exponent (**), and modulo (%)" | ||
| operator = gets.chomp.strip.downcase | ||
| end | ||
| # return the operator symbol for either symbol or word provided | ||
| case operator | ||
| when "add", "+" | ||
| return "+" | ||
| when "subtract", "-" | ||
| return "-" | ||
| when "multiply", "*" | ||
| return "*" | ||
| when "divide", "/" | ||
| return "/" | ||
| when "exponent", "**" | ||
| return "**" | ||
| when "modulo", "%" | ||
| return "%" | ||
| end | ||
| end | ||
|
|
||
| # method using regex to check that no alphabetic characters are used in number input | ||
| def valid_num(string) | ||
| until !(string.match(/[a-z]/)) | ||
| puts "Please enter an integer or decimal number: " | ||
| string = gets.chomp | ||
| end | ||
| # convert strings into floats and integers appropriately | ||
| if string.match(/[[:digit:]]\.[[:digit:]]/) | ||
| string = string.to_f | ||
| elsif string.match(/[[:digit:]]/) | ||
| string = string.to_i | ||
| end | ||
| end | ||
|
|
||
| # perform the operation with the 2 numbers provided | ||
| def calculate(num_1, num_2, operator) | ||
| case operator | ||
| when "+" | ||
| return num_1 + num_2 | ||
| when "-" | ||
| return num_1 - num_2 | ||
| when "*" | ||
| return num_1 * num_2 | ||
| when "/" | ||
| return num_1 / num_2 | ||
| when "**" | ||
| return num_1 ** num_2 | ||
| when "%" | ||
| return num_1 % num_2 | ||
| end | ||
| end | ||
|
|
||
| # greet the user and get input | ||
| puts "Welcome to the Calculator App" | ||
| puts "Which operator would you like to use?" | ||
| operator = gets.chomp.strip.downcase | ||
|
|
||
| # make sure the user didn't accidentally hit enter without any input | ||
| while operator.empty? | ||
| puts "That is not a valid operator. This calculator accepts add (+), subtract (-), multiply (*), divide (/), exponent (**), and modulo (%)" | ||
| operator = gets.chomp.strip.downcase | ||
| end | ||
|
|
||
| operator = validate_operator(operator) | ||
|
|
||
| # get numbers and validate numbers | ||
| puts "First number:" | ||
| num_1 = valid_num(gets.chomp) | ||
|
|
||
| puts "Second number:" | ||
| num_2 = valid_num(gets.chomp) | ||
|
|
||
| # pass needed arguments to the calculate method | ||
| result = calculate(num_1, num_2, operator) | ||
| # print equation and result | ||
| puts "#{num_1} #{operator} #{num_2} = #{result}" | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why pass gets.chomp as an argument? Why not simply include that in the method.