Computer Science Engineering C++ Homework, C/C++ Programming

Assignment Help:
Temperature Conversions. Problems 28 through30generate temperature-conversion
tables. Use the following equations that give relationships between temperatures in degrees
Fahrenheit (TF), degrees Celsius (TC), degrees Kelvin (TK), and degrees Rankin (TR):
TF = TR - 459. 67 degrees R
TF = (9/5) TC + 32 degrees F
TR = (9/5) TK
26. Write a program to generate a table of conversions from Fahrenheit to Celsius for
values from 0 degrees F to 100 degrees F. Print a line in the table for each 5-degree
change. Use a while loop in your solution.
27. Write a program to generate a table of conversions from Fahrenheit to Kelvin for
values from 0 degrees F to 200 degrees F. Allow the user to enter the increment in
degrees Fahrenheit between lines. Use a do/while loop in your solution.
28. Write a program to generate a table of conversions from Celcius to Rankin. Allow
the userto enterthe starting temperature and incrementbetween lines. Print25 lines
in the table. Use a for loop in your solution.

In the textbook, problems 26, 27, and 28 involve writing programs to perform temperature conversions. The first program for this assignment should combine the functionality of these three problems. Start by prompting the user to enter "1" if they want to convert from Fahrenheit to Celsius (problem 26), "2" to convert from Fahrenheit to Kelvin (problem 27), or "3" to convert from Celsius to Rankin (problem 28). If the user types something other than 1, 2 or 3, you should prompt them again. (Hint this is a good place for a loop.) Once the user enters a valid reponse then you should branch to the appropriate section of code. A response of 1 should cause you to branch to the code that solves problem 26. A response of 2 should cause you to branch to the code that solves problem 27. Finally a response of 3 should cause you to branch to the code that solves problem 28. Make sure that in the case of the code that addresses problems 27 and 28 that you get user input as indicated in the description of these problems on page 178 of the textbook.

Related Discussions:- Computer Science Engineering C++ Homework

Lexicographic permutation, Given an integer n and a permutation of numbers ...

Given an integer n and a permutation of numbers 1, 2 ... , n-1, n write a program to print the permutation that lexicographically precedes the given input permutation. If the given

Explain the class invariant, Explain the class invariant. - It's a cond...

Explain the class invariant. - It's a condition that ensures correct working of a class and defines all the valid states for an object. - When an object is created class inv

Program to find shortest path between two nodes, Ques.Implement a c/c++ pro...

Ques.Implement a c/c++ program to find a shortest path between two nodes in a network?network should be taken as an adjacency matrix.

Convert a cov-cpe file to a tif image file, Convert a COV/CPE (Micosoft Fax...

Convert a COV/CPE (Micosoft Fax Cover Page) file to a TIF image file Project Description: I would like a small API written that will take a COV/CPE file and replaced the corr

Car rental payment system, payment system, in c++ only..just use the printf...

payment system, in c++ only..just use the printf or scanf.please

Write a program to illustrate array of structures, Write a program to illus...

Write a program to illustrate array of structures? struct customer { int id; char name[15]; }; struct customer c[100]; . In the above instance, the array of Structures is

C program to design text styles, Program to design text styles: Write ...

Program to design text styles: Write a C program to design different text style char *fname[] = { "DEFAULT font",                                   "TRIPLEX font",

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd