fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. #ifndef TESTE
  5. #define TESTE
  6.  
  7. double cubo(double a) {
  8. return a * a * a;
  9. }
  10.  
  11. #endif // TESTE
  12.  
  13. int main() {
  14. // your code goes here
  15. return 0;
  16. }
  17.  
  18. //https://pt.stackoverflow.com/q/226328/101
Success #stdin #stdout 0s 4244KB
stdin
Standard input is empty
stdout
Standard output is empty