Advertisement
adambkehl

Assignment #1 (4/4) - Page 112 #6

Feb 22nd, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.     double gallons, miles;
  6.     cout << "Enter miles travelled: "; cin >> miles;
  7.     cout << "Enter gallons of gas used: "; cin >> gallons;
  8.  
  9.     cout << miles / gallons << " MPG";
  10.  
  11.     cin.get(), cin.get();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement