vb問題求s1121,vb問題求s112123123n

2021-03-04 09:01:16 字數 2141 閱讀 5152

1樓:匿名使用者

private sub ***mand1_click()dim i as integer

dim j as integer

dim n as integer

dim s as integer

dim s0 as integer

n = val(text1.text)

s = 0

for i = 1 to n

s0 = 0

for j = 1 to i

s0 = s0 + j

next

s = s + s0

next

text1.text = s

end sub

2樓:匿名使用者

num = 0

s = 0

n=inputbox(

來"輸入

自n的值")

for i = 1 to n

num = num + i

s = s + num

next i

print s

用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);}

c++編寫程式,計算s=1+(1+2)+(1+2+3)+...+(1+2+3+...+n)的值

9樓:再見理想者

#include

using namespace std;

int main()

cout<

return 0;}

10樓:董俊錕

#include

void main()

printf("sum = %d\n",sum);}

c語言求s=1+(1+2)+(1+2+3)+...+(1+2+3+...+n)=,

11樓:逸雲淡淡

t是浮點型,而輸出時是整型。可以將輸出的%d改為%f,或將float改為int,建議改float,可以減小記憶體佔用。當然不一定要改float,因為程式比較小。

12樓:金魚

#include"stdio.h"

int sum_num(int i)

return sum;

}int main()

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

return 0;}

13樓:資料**

最好函式呼叫。

#include

#include

int sum_num(int i)

return sum;

}int main()

printf("%d",sum);

return 0;}

14樓:兄弟們上刺刀

計蒜客程式設計視窗左邊的那個提問,你去那裡看看吧。。

求VB幫助控制項陣列的問題

品牌3個按鈕為command1控制項組 品牌資訊3個文字框為text1控制項組 各個品牌數量及總價為text2控制項組 確定取消結束為command2控制項組 private sub command1 click index as integer if index 0 then text1 0 愛國...

求VB程式,求用VB解答

運用排序方法吧 例如泡沫排序 或者 快速排序。如果動用資料庫的話就相當簡單了。43295811 佩服。看來我還是太懶了。求用vb解答 製作這個程式的時候先在窗體中加入乙個標籤,並且把窗體標籤的內容設定為空,然後再製作乙個命令按鈕,也把命令按鈕的顯示改為開始,再加入乙個定時器控制項。核心在於計時器控制...

vb問題timer控制項的用法,VB問題,timer 控制項的用法。

dim t private sub command1 click t 0 timer1.interval 1000 計時事的毫秒數,即每1秒呼叫一次timer1 timer timer1.enabled trueend sub private sub timer1 timer t t 1 text1...