fork download
  1. #include <cmath>
  2. #include <iostream>
  3.  
  4. int main() {
  5. static_assert(std::abs(std::log2(64.) - 6.) < 0.0001, "!");
  6.  
  7. return 0;
  8. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty