Question: For Max Points Possible, be sure to validate user input as per the techniques discussed in class, or as per another manner. 1 . Create

For Max Points Possible, be sure to validate user input as per the techniques discussed in class, or as per another manner.
1.Create a Folder on your saving location called Unit2_Calculator_YourLastName to hold all files of this project
2. Create a .cscalledCalculator_YourLastName.cs
3. Implement a calculator based upon the following algorithm:
first number = get input from user
if first number not numeric then print warning
second number = get input from user
if second number not numeric then print warning
operation = get input from user
lower case the operation for case insensitivity
if operation is + or "add" then
print first number + second number
otherwiseifoperationis - or "subtract" then
print first number - second number
otherwiseifoperationis * or "multiply" then
print first number * second number
otherwiseifoperationis / or "divide" then
print first number / second number
otherwise
print warning
Sample input/output
Number1: 3
Number2: 5
Operation: +
=8
OR
Number1: 3
Number2: 5
Operation:add
=8
Consider my code example here:

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!