COMP 122 Lab 5 Lab Report and Source Code COMP 122 Lab 5 Lab Report and Source Code
COMP 122 Lab 5 Lab Report and Source Code
Click Below Link To Purchase
www.foxtutor.com/product/comp-122-lab-5-lab-report-and-source-
code
COMP 122
Week 5 iLab
Objectives
Apply structured and modular design principles to write programs that meet written
specifications and requirements. Develop a pseudo-code design using appropriate program
structure (sequence, selection, repetition and nesting) to solve a given programming problem.
Use appropriate selection and repetition statements to implement the design. Create user-
defined functions to implement a modular design. Use appropriate parameter passing
mechanisms for passing data into and getting data back from functions. Use ostream and
iomanip formatting manipulators to display tabulated data. Design and implement a menu-
driven interface.
Problem Description
This program is to give the user the option of converting a set of temperatures either from
Celsius to Fahrenheit (C to F) or vice versa, from Fahrenheit to Celsius (F to C), or to quit the
program. If the user selects either C to F or F to C, the program will prompt the user to enter
three integer values, a starting temperature, an ending temperature, and an increment. After
these values have been entered the program will display a table of equivalent C and F (or F and
C) temperatures, from the starting temperature to the ending temperature and incrementing
by the increment value each row.
The table must meet all of the following criteria: