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.
Create a Folder on your saving location called UnitCalculatorYourLastName to hold all files of this project
Create a cscalledCalculatorYourLastName.cs
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 inputoutput
Number:
Number:
Operation:
OR
Number:
Number:
Operation:add
Consider my code example here:
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
