Forum: C++ Dec 4th, 2008 |
| Replies: 3 Views: 326 /* Filename: odometer.cpp
* Author: Tom Pizzo
* Email address: pizzotm@clarkson.edu
* Description: Program to track fuel and mileage for an automotive vehicle.
* Last changed: Dec 1, 2008
... |
Forum: C++ Nov 9th, 2008 |
| Replies: 1 Views: 253 #include <iostream>
#include <cstdlib>
using namespace std;
const int MAX_ARRAY_SIZE = 11;
void instructions();
//Explains the program to user. |
Forum: C++ Nov 7th, 2008 |
| Replies: 1 Views: 659 #include <iostream>
#include <cstdlib>
#include <fstream>
#include <string>
using namespace std;
const int MAX_MONTH = 13;
const int MAX_STRING_MONTH = 20;
const int MAX_ARRAY_TEMP = 13; |
Forum: C++ Nov 6th, 2008 |
| Replies: 4 Views: 335 Okay thank you, can I post some code here to get some help from it after I start? |
Forum: C++ Nov 6th, 2008 |
| Replies: 4 Views: 335 I am a beginner and our teacher gave me this assignment. I am going to be writing some code tonight but I am having a tough time starting. should I have a seperate function to handle both manual... |
Forum: C++ Nov 6th, 2008 |
| Replies: 4 Views: 335 Write a C++ program that reads in the historical average monthly rainfall for NY for each month of the year and then reads in the actual monthly rainfall for each month in 2007. Finally, the program... |