Guest User

Untitled

a guest
Jun 17th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. index % time self children called name
  2. ----------------------------------------
  3. 1.77 0 1/1 main [2]
  4. [3] 91.71 1.77 0 1+5 <cycle 1 as a whole> [3]
  5. 1.02 0 3 b <cycle 1> [4]
  6. 0.75 0 2 a <cycle 1> [5]
  7. 0 0 6/6 c [6]
  8. ----------------------------------------
  9.  
  10. index % time self children called name
  11. ----------------------------------------------
  12. [8] 65.6 259.55 5342.63 9334767+60122608 <cycle 2 as a whole> [8]
  13. 133.28 2051.45 12043564+74015448 foo <cycle 2> [14]
  14. 18.90 976.38 2379645 bar <cycle 2> [21]
  15. ...
  16. -----------------------------------------------
  17.  
  18. int a(int n){return b(n);}
  19. int b(int n){return c(n);}
  20. int c(int n){return (n==0)?n:a(n-1);}
  21.  
  22. for(int j=0; j <1000; ++j)
  23. for(int i=0; i < 10; ++i)
  24. cout << a(i);
  25.  
  26. int d(int n){return a(n);}
Add Comment
Please, Sign In to add comment