Answered step by step
Verified Expert Solution
Link Copied!

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:

  1. Declare aswitchblock with the input case as astringstr.
  2. Declare two cases asaddandsum, and useConsole.WriteLine()to display the sum of the two variablesaandb.
  3. Use thebreakstatement to take the control outside theswitchblock after displaying the sum of the variables.
  4. Declare two cases asdiffandsub, and useConsole.WriteLine()to display the difference of the two variablesaandb.
  5. Use thebreakstatement to take the control outside theswitchblock after displaying the difference of the variables.
  6. Declare adefaultcase and useConsole.WriteLine()to display the product of the two variablesaandb.
  7. 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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Financial management theory and practice

Authors: Eugene F. Brigham and Michael C. Ehrhardt

12th Edition

978-0030243998, 30243998, 324422695, 978-0324422696

Students also viewed these Programming questions