Advertisement
MarceloSousa

Recursividade

Dec 9th, 2013
327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. //RECURSIVIDADE
  2. //  Técnica de programação que consiste numa função que chama a si própria.
  3.  
  4.  
  5. #include <stdio.h>
  6.  
  7. void imprime(int);
  8.  
  9. main(){
  10.    
  11.     imprime(1);
  12.     return 0;
  13. }
  14.  
  15. void imprime(int n){
  16.    
  17.     if(n<=5){
  18.         printf("%i\n",n);
  19.         imprime(n+1);
  20.     }
  21.    
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement