fork download
  1. #include <stdio.h>
  2. int hoge(int a){
  3. if(a<1){
  4. return 1;
  5. }else{
  6. return 1+2*hoge(a-1);
  7. }
  8. }
  9. int main() {
  10. int x= hoge(3);
  11. printf("%d", x);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
15