fork download
  1. #include <stdio.h>
  2. //課題3
  3. int rec(int n){
  4. //rec内を完成させてください
  5. if(n==0){
  6. return 3;
  7. }
  8. else if(n==1){
  9. return 0;
  10. }
  11. else if(n==2){
  12. return 2;
  13. }
  14. else{
  15. return rec(n-2) + rec(n-3);
  16. }
  17.  
  18.  
  19. }
  20.  
  21. int main(void) {
  22. int n = 50;
  23. for(int i = 0; i <= n; i++){
  24. if(i==0){
  25. printf("%d, ", 0);
  26. }
  27. else if(rec(i)%i==0){
  28. printf("%d, ", i);
  29. }
  30. }
  31.  
  32. return 0;
  33. }
  34.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
0, 1, 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47,