
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN: 9780133594140
Author: James Kurose, Keith Ross
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Question
thumb_up100%

Transcribed Image Text:Write a program using switch which prints different letters depending on the value of an integer type variable x input by the user.
Rules:
if x is 1, print "A"
if x is 2, print "B"
if x is 3, print "C"
Otherwise, print "F"
Sample output1:
Type a positive integer x: 1
A
Sample output2:
Type a positive integer x: 4
F
Sample output3:
Type a positive integer x: 3
C
Expert Solution

arrow_forward
Step 1
Note: since programming language is not mention we are providing solution c programming; please repost the question for other programming languages.
Step by stepSolved in 4 steps with 4 images

Knowledge Booster
Similar questions
- Write a program that prompts the user to input an integer between 1 and 36. If the number is less than or equal to 10, the program should output the number; otherwise, it should output A for 11, B for 12, C for 13, . . . , and Z for 36.arrow_forwardWrite a program using integers userNum and divNum as input, and output userNum divided by divNum three times.arrow_forwardWrite a program that takes an integer number between 0 to 100 as input and outputs one of the following: The entered number XXX is Small The entered number XXX is Medium The entered number XXX is Big The entered number XXX is Huge (Where XXX should be the input number) 0 - 25 are considered small 26 - 50 are considered medium 51 - 75 are considered big 76 - 100 are considered huge Any other number should be rejected. Ex: If the input is: 64 the output is: The entered number 64 is Bigarrow_forward
- Write an program which ask the user to type a positive integer until the user types an even number. Once a user types a even number, print the even number. Sample output1: Type a positive integer n: 5 Type a positive integer n: 9 Type a positive integer n: 1 Type a positive integer n: 35 Type a positive integer n: 45 Type a positive integer n: 4 4 Sample output2: Type a positive integer n: 3 Type a positive integer n: 8 8 C++ nothing too advanced pleasearrow_forwardWrite a program that asks the user for a negative number, then prints out the product of all the numbers from -1 to that numberarrow_forwardWrite a program using integers userNum and x as input, and output userNum divided by x four times. Ex: If the input is: 2000 2 the output is: 1000 500 250 125 Note: In Coral, integer division discards fractions. Ex: 6 / 4 is 1 (the 0.5 is discarded). 333666.1636490.qx3zqy7arrow_forward
- Problem Ask the user for a positive integer N, then output the number of even and odd digits of N. The program should continuously ask input from the user until the user inputs a nonpositive integer (where the program must exit). Sample Run Enter n: 100 Even digits: 2 Odd digits: 1 Enter n: 31 Even digits: 0 Odd digits: 2 Enter n: 4286 Even digits: 4 Odd digits: 0 Enter n: 1234567890 Even digits: 5 Odd digits: 5 Enter n: -15 Goodbye! NOTE: You are not allowed to use string functions/operations, lists, tuples, dictionaries, or any other non-scalar objects.arrow_forwardWrite a program that asks for two integers and writes both the Euclidean division and the real division of the first by the second. For example, for inputs 42 and 5, the program should output: 42=8* 5+2 | 42/5=8.4 (remark the vertical bar and the spaces) The prompts must be "Enter the numerator:" and "Enter the denominator:" (Hint: Use float type for decimals) Sample output: Enter the numerator: 42 Enter the denominator : 5 42=8*5+2 | 42/5=8.4arrow_forwardWrite a complete program that prompts the user to enter two integer numbers x and y, and outputs the remainder of the division x/y. If the value of y is zero, your program should output the message "Cannot calculate the remainder", otherwise it outputs the remainder of the division of x/y.arrow_forward
- In Coral Programing!! Write a program whose input is two integers, and whose output is the first integer and subsequent increments of 10 as long as the value is less than or equal to the second integer. Ex: If the input is -15 30, the output is: -15 -5 5 15 25 Ex: If the second integer is less than the first as in 20 5, the output is: Second integer can't be less than the first. For coding simplicity, output a space after every integer, including the last.arrow_forwardWrite a program that reads a value n and displays n characters alternating between # and % on the screen. The characters must be displayed one on each line. Note that the first character to be displayed is always # EntryA positive integer value n OUTPUTA sequence of characters showing the line number and then a character starting with # and alternating between # and %. The output of the program must be exactly as follows: Program execution example: Input: 7 Departure: 1-# two-% 3-# 4-% 5-# 6-% 7-#arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Computer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Concepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningPrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY

Computer Networking: A Top-Down Approach (7th Edi...
Computer Engineering
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:PEARSON

Computer Organization and Design MIPS Edition, Fi...
Computer Engineering
ISBN:9780124077263
Author:David A. Patterson, John L. Hennessy
Publisher:Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:9781337569330
Author:Jill West, Tamara Dean, Jean Andrews
Publisher:Cengage Learning

Concepts of Database Management
Computer Engineering
ISBN:9781337093422
Author:Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:Cengage Learning

Prelude to Programming
Computer Engineering
ISBN:9780133750423
Author:VENIT, Stewart
Publisher:Pearson Education

Sc Business Data Communications and Networking, T...
Computer Engineering
ISBN:9781119368830
Author:FITZGERALD
Publisher:WILEY