計算S 1 2 3 4 5 6輸出前20項的和S

時間 2022-05-12 22:30:03

1樓:匿名使用者

#include

main()

2樓:匿名使用者

c裡面的步長怎麼設定,查了下不知道對不對

#include

main()

請用j**ascript計算: s=1*2-2*3+3*5-5*8+8*13-13*21+……(前20項的和)。

c++程式設計求解是s=1*2+3*4+5*6+...+39*40

3樓:中兵勘察海外部

其實,你用一個變數還是倆;

倆的話,就是a=1,b=2,然後給a=a+2,b=b+2,迴圈……

一個的話,就a=1,再加a+1,然後a=a+2,再加a+1,直到a<40

用j**ascript設計一個程式計算s=1*2+3*4+5*6+....99*100

4樓:匿名使用者

var res = 0,str = '';

for(var i = 1; i < 100; i+=2)

console.log('s='+str.substring(0,str.length - 1)+'='+res);

s=1/(1+2+3)-2/(2+3+4)+3/(3+4+5)-4/(4+5+6)+……前20項和的c語言程式設計

5樓:匿名使用者

#include

#define size 20

int main(void)

s+= 1/(temp[0]+temp[1]+temp[2]);

}return 0;}

用c語言,輸入n的值,程式設計計算出s=1*1+2*2+3*3+4*4+5*5+……+n*n的s值?

6樓:匿名使用者

#include

int main()

printf("%d",s);}

用for語句程式設計計算s=1/2+3/4+5/6+7/8+9/10+.......求前30項之和 。

7樓:匿名使用者

**如下:

#include

#include

int main()

printf("%lf\n", sum);

system("pause");

return 0;

}執行結果:

c語言題目s=1*2+2*3+3*4+...+18*19+19*20+20*21 5

8樓:小小小小的小小

#include

int main()

printf("%d",z);

return 0;}

程式設計計算1/2+2/3+3/4+4/5......前20項之和

9樓:匿名使用者

pascal

var i:longint;

sum:real;

begin

sum:=0; ///計數器清零

for i:=1 to 20 do sum:=sum+(i/(i+1)); ///迴圈累加

writeln(sum:0:10); ///輸出,要是覺得輸出的科學計數法難過,就加一個場寬writeln(sum:0:10)輸出了十位小數

end.

要c或者c++可聯絡。樓下的是vb的,拉一個按鈕,因為是按鈕1,所以**因該這樣。

private sub command1_click()dim i, t, s

s = 0

for i = 1 to 20

t = (1 + i - 1) / (1 + i)s = s + t

next

print s

end sub

10樓:匿名使用者

private sub command2_click()dim i, t, s

s = 0

for i = 1 to 20

t = (1 + i - 1) / (1 + i)s = s + t

next

print s

end sub

結果 17.3546412952373

11樓:匿名使用者

float sum = 0;

int i = 1;

for(i=1;i<21;++)

printf ("sum = %.3f!\n", sum);

如有幫助請採納。

7用C 程式設計就前20項的和,用C語言程式設計輸出數列1,1,2,3,5,8,13,21的前20 項

include using namespace std bool isprime int n return 1 int main cout sum endl 倒黴熊 include using namespace std const int num 20 int main a n i n i if ...

VB程式輸入整數N,計算前N項和S 1 1 21 2

private sub command1 click dim i,n,s as integern val text1.text s 0 for i n to 0 step 1s s i i 1 2next i text2.text s end sub private sub command1 cli...

設等比數列an的前n項和為Sn,如果S3 S6 2S9,求數列公比q?過程!謝謝

sn a1 1 q n 1 q 根據題意,1 q 3 1 q 6 2 1 q 9 化簡得到q 3 q 6 2q 9 推出1 q 3 2q 6,q 3 1 舍 或q 3 1 2 當q 1 sn na1 3a1 6a1 2 9a1 左邊 9,右邊 18 不符,舍 綜上所述q 3 1 2 q 1 2 3次...