Question
FINISH PROBLEM #10 Language: C++ ////////////////////////////////// // // // #include using namespace std; // prototypes // global vars //project entry int main() { // declarations
FINISH PROBLEM #10 Language: C++
//////////////////////////////////
//
//
//
#include
using namespace std;
// prototypes
// global vars
//project entry
int main()
{
// declarations
float start;
float end;
float temp;
//initalization
// steps
//1. educate the user (what this code do)
//2. draw a menue (choose the conversion type)
//3.capture the respone( integers or char)
//
//4. ask for the starting temp
//5. capture the start
//6. ask for the end temp
//7. capture the ending temp
//8. ask for the increment
//9. capture the increment (float)
//10 if increment is positive (will have an else part takes care of negative increment)
//11. compare start and end
if (start > end)
{
temp = end;
end = start;
start = temp;
}
//12. starting from lower temp to larger using the increment
while (start
{
//a. convert start to fah or cel
//b. output to screen
//c. start = start + increment;
//d. once start = end condition failes and table is done
}
return 0;
}
10. while (xStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started