fork download
  1. #include <stdio.h>
  2.  
  3. // 再帰を用いて1からnまでの二乗和を計算する関数
  4. int rec(int n){
  5. if (n == 1){
  6. return 1;
  7. }
  8. else{
  9. return n * n + rec(n - 1);
  10. }
  11. }
  12.  
  13. int main(void) {
  14. int n = 4;
  15.  
  16. for(int i=1;i<=n;i++)
  17. {
  18. printf("1から%dまでの二乗和の値は%d\n", i, rec(i));
  19. }
  20. return 0;
  21.  
  22. }
  23.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
1から1までの二乗和の値は1
1から2までの二乗和の値は5
1から3までの二乗和の値は14
1から4までの二乗和の値は30