میزان مصرف سوخت خودرو برای رانندگان اهمیت دارد. راننده ای مقدار گاز مخزن خودروی خود را به همراه مقدار مسافتی که پیموده است. برنامه ای به زبان ++C بنویسید که مقدار مصرف گاز را به گالن برای هر مخزن و مقدار مسافت را به مایل از کاربر گرفته و نسبت مایل به گالن برای هر مخزن را برای هر بار محاسبه کردهو نمایش دهد. برنامه پس از پردازش تمام اطلاعات ورودی باید نسبت مایل به گالن کل را برای تمام مخزن محاسبه و سپس نمایش دهد.
Enter the gallons used (-1 to end): 12.8
Enter the miles driven: 287
The miles / gallon for this tank was 22.421875
Enter the gallons used (-1 to end): 10.3
Enter the miles driven: 200
The miles / gallon for this tank was 19.417475
Enter the gallons used(-1 to end): 5
Enter the miles driven: 120
The miles / gallon for this tank was 24.000000
Enter the gallons used (-1 to end): -1
The overall average miles/gallon was 21.601423
-------------------------------------------------------------------------------------------------------
#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
double gallons, miles, totalGallons = 0.0,
totalMiles = 0.0, average;
cout << "Enter the gallons used (-1 to end): ";
cin >> gallons;
while(gallons != -1.0) {
totalGallons += gallons;
cout << "Enter the miles driven: ";
cin >> miles;
totalMiles += miles;
cout << "The Miles / Gallon for this tank was "
<< miles / gallons
<< "\n\nEnter the gallons used (-1 to end): ";
cin >> gallons;
}
average = totalMiles / totalGallons;
cout << "\nThe overall average Miles/Gallons was "
<< average << endl;
getch();
return 0;
}