//Clifton Copeland
//Excercise 6.27
//This program outputs Fahrenheit and Celcius range charts.
//C = (F-32)*5/9
//F = C*9/5+32
#include <iostream>
using namespace std;
int cTable;
int fTable;
int main()
{
cout << "Choose which table you would like to display." << endl;
cout << "Press C for conversions to Celcius." << endl;
cin >> cTable >> endl;
cout << "Press F for conversions to Farenheit." << endl;
cin >> fTable >> endl;
return 0;
}
That's what I have so far. I know it's not much, but I am totally stuck on this. We didn't even touch on this in class last time due to lack of time. Now, we're supposed to create a program that prints charts showing F equiv of all C temps from 0-100 degrees. It's supposed to be printed in a neat tabular format. I'm totally at a loss where to begin with all of it.
If someone could possibly point me in the right direction I would so greatly appreciatte it. I need a table for C equivs of F temps, but if I could get an idea on one table type, I'm sure I could do the other. Formatting the output on the screen really has me totally confused.
Thank any who would be willing to help with this SO much!
-kahaj