fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. float a = 4.6, b = 12, c = 11.5;
  7.  
  8. cout << min(min(a, b), c);
  9.  
  10. return 0;
  11.  
  12. }
Success #stdin #stdout 0s 2852KB
stdin
Standard input is empty
stdout
4.6