PDA

View Full Version : Interactive C++ program that inputs a series of 12 temperatures from the user.


willwill
May 15, 2008, 06:13 AM
Interactive C++ program that inputs a series of 12 temperatures from the user.

ScottGem
May 15, 2008, 06:31 AM
Please review the guidelines on asking for help with homework that can be found here:

https://www.askmehelpdesk.com/arts-literature/announcement-u-b-read-first-expectations-homework-help-board-b-u.html

twistedz
May 15, 2008, 06:57 AM
First define 12 varible of type int or double. Double would be a better option. If you are more advance use an array. Then ask the user to input a value and store it.

e.g.
double temp1;
cout << "Please enter first temp";
cin >> temp1;

I can't do you'r homework but here's a guideline