Answered step by step
Verified Expert Solution
Question
1 Approved Answer
using the switch statement with the string . Complete the given code in the C# block by performing the following tasks: Declare a switch block
using theswitchstatement with thestring.
Complete the given code in the C# block by performing the following tasks:
- Declare aswitchblock with the input case as astringstr.
- Declare two cases asaddandsum, and useConsole.WriteLine()to display the sum of the two variablesaandb.
- Use thebreakstatement to take the control outside theswitchblock after displaying the sum of the variables.
- Declare two cases asdiffandsub, and useConsole.WriteLine()to display the difference of the two variablesaandb.
- Use thebreakstatement to take the control outside theswitchblock after displaying the difference of the variables.
- Declare adefaultcase and useConsole.WriteLine()to display the product of the two variablesaandb.
- Use thebreakstatement to take the control outside theswitchblock after displaying the product of the variables.
Note:In the C# block, replace the comments with the appropriate code, if required.
Sample input:
sum 9
7
Sample output:
16
static public void checkStr(string str, int a, int b)
{
//your code here//
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started