Advertisement
ZhilinskiyG

Task 0_05

Feb 4th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include <iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     int b;
  8.     int c;
  9.     int d;
  10.     cout << "Input price of the battery\n";
  11.     cin >> a;
  12.     cout << "Input price of the grease\n";
  13.     cin >> b;
  14.     cout << "Input number of batteries\n";
  15.     cin >> c;
  16.     cout << "Input amount of grease\n";
  17.     cin >> d;
  18.     cout << "Total cost\n";
  19.     cout << a*c + b*d << endl;
  20.     system("pause");
  21.     return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement