Advertisement
alaminrifat

URI -1017 with C++

Apr 5th, 2020
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int a,b;
  7.     float l;
  8.     cin>>a>>b;
  9.     l=(a*b)/12.000;
  10.     cout. precision(3);
  11.     cout<<fixed<<l<<endl;
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement