fork download
  1. #include <iostream>
  2. #include <iomanip>
  3. using namespace std;
  4. int main() {
  5. int a,b;
  6.  
  7.  
  8. float c=a/b;
  9. cout<<setiosflags(ios::fixed);
  10. cout<<fixed<<std::setprecision(2)<<c<<endl;
  11. return 0;
  12. }
Success #stdin #stdout 0s 16064KB
stdin
2 3
stdout
0.00