fork download
  1. #include <iostream>
  2. #include <cmath>
  3.  
  4. int main()
  5. {
  6. double v = -1.2;
  7. std::cout << std::abs( v ) << std::endl;
  8. std::cout << ::abs( v ) << std::endl;
  9. }
  10.  
Success #stdin #stdout 0s 2896KB
stdin
Standard input is empty
stdout
1.2
1