編寫程序,求1+1+2+1+2+3+…+1+2+3+…+n。當n爲10時,程序輸出結果爲220。提示:1+(1+2)+(1+2+3)+…+(1+2+3+…+n)

#include<stdio.h> #include<math.h> main() { int a=0,b,c,n,i; printf(「請輸入一個數n:」); scanf("%d",&n); for (;i<=n;i++) { for (c=1,b=0;c<=i;c++) b=b+c; a=a+b; } printf("%d\n",a); } PS:下面是程序執行結果,上面是文字版,想要文字版的
相關文章
相關標籤/搜索