Advertisement
alabala

Untitled

May 27th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int n, T;
  7. float R, P, V;
  8. cin >> n;
  9. cin >> T;
  10. cin >> V;
  11. R = 8,315;
  12. P = (n * R * T)/V;
  13. cout << P;
  14. return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement