Question: FINISH PROBLEM #10 Language: C++ ////////////////////////////////// // // // #include using namespace std; // prototypes // global vars //project entry int main() { // declarations

FINISH PROBLEM #10 Language: C++

 FINISH PROBLEM #10 Language: C++ ////////////////////////////////// // // // #include using

//////////////////////////////////

//

//

//

#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 (x

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!