1樓:匿名使用者
public class test
system.out.println(s); //n取的是3,答案為10,你也可以設定n為其他的數字}}
2樓:育知同創教育
int s = 0;
for(int i = 1 ; i <= n ; i++)s = s + m;}
用c語言編寫程式,求s=1+(1+2)+(1+2+3)+(1+2+3+4)+(1+2+3+4+...n)。
3樓:育知同創教育
#include "stdio.h"
void main()
}利用for迴圈,根據式子的特性進行相加,得專出最終結果屬。
4樓:有沒有胡楊
迴圈求出每一個括號內的和,設為i,這個應該好求吧,在迴圈結束前加上s=s+i!祝你好運,哥們!
5樓:匿名使用者
#include
int main()
printf("s=%d\n",s);
getch();
return 0;}
6樓:匿名使用者
main()
printf(%d,s);}
7樓:匿名使用者
littleboyzzm想得不錯,可惜成了死迴圈
8樓:匿名使用者
#include
main()
printf("%d\n",s);}
編寫程式,計算s 1 1 21 2 31 2 3n
include using namespace std int main cout return 0 include stdio.h int main void for s t 0,i 1 i n s t i printf the result is d n s return 0 clear set...
求冪級數 n 1n 1分之x的n 1次方的和函式
請參考下圖的做法,先改變次數便於求導化為等比級數,最後再還原。x 0處的級數和可直接由定義得出是1 2。設s x x n 1 n 1 n 1,2,顯然,x 0時,s x 1 2 x 0時,原式 s x x 而,x 1,1 時,s x x n x 1 x 1 1 x 1。s x 0,x s x dx ...
求冪級數的和函式求和n 1到無窮(n(n 1))x n
收斂區間我就不求了,你自己算下 收斂區間為 1,1 設s x nx n n 1 兩邊同乘x xs x nx n 1 n 1 令f x xs x nx n 1 n 1 兩邊同時求導 f x nx n 兩邊同除x f x x nx n 1 令g x f x x nx n 1 兩邊同時積分 g x dx ...