cis170b week 2 ilab part b help
Your mission: Write a program that translates a TV channel (1 through 10) in your area to its respective call sign. For example, in the New York metropolitan area, channel 2 translates to WCBS. If a channel is unused in your area, tell the user that this is the case. Sample output from program: Save your time - order a paper!Get your paper written from scratch within the tight deadline. Our service is a reliable solution to all your troubles. Place an order on any task and we will take care of it. You won’t have to worry about the quality and deadlines Order Paper NowTranslate TV Channel Number to Call Sign Enter channel number: 1 Enter channel number: 2 Enter channel number: 6
|
Tips |
Best practice: Put yourself in the place of the program. What steps would you personally need to perform in order to process a channel translation yourself? Write out those steps on paper as pseudocode and/or in Visual Studio as C# comments, and then implement them one by one, testing as you go. Remember to not write too much at one time. Always add and test functionality incrementally! Pseudocode: Although there are several valid ways to write the program, the following is an outline of one way to design the overall logic.
|