Advertisement
Md_Touhid

URI - Problem 1014 - Consumption

Apr 14th, 2020
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include<iostream>
  2. #include<iomanip> //for setprecision()
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.     int distance;
  9.     double fuel;
  10.  
  11.     cin >> distance;
  12.     cin >> fuel;
  13.  
  14.     double avg_cons = distance / fuel;
  15.  
  16.     cout << fixed << setprecision(3) << avg_cons << " km/l" << endl;
  17.  
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement