fork download
  1. #include <stdio.h>
  2. //課題4
  3. int rec(int n){
  4. if(n==0){
  5. return 3;
  6. }
  7. else if(n==1){
  8. return 0;
  9. }
  10. else if(n==2){
  11. return 2;
  12. }
  13. else{
  14. return rec(n-2)+rec(n-3);
  15. }
  16. }
  17.  
  18. int main(void) {
  19. //main内を変更
  20. int n = 50;
  21. for(int i = 1; i <= n; i++){
  22. if(rec(i)%i==0){
  23. printf("%d, ", rec(i));
  24. }
  25. }
  26.  
  27. return 0;
  28. }
  29.  
Success #stdin #stdout 0.02s 5320KB
stdin
Standard input is empty
stdout
0, 2, 3, 5, 7, 22, 39, 119, 209, 644, 3480, 6107, 33004, 101639, 178364, 549289,