1樓:匿名使用者
const pi=3.14
s=4*pi*val(txt1.text)*val(txt1.text)
v=4/3*pi*val(txt1.text)*val(txt1.text)*val(txt1.text)
2樓:匿名使用者
private sub command1_click()r = text1
π = 3.14
s = 4 * π * r ^ 2
v = 4 / 3 * π * r ^ 3msgbox "s=" & s
msgbox "v=" & v
end sub
編寫程式:根據輸入的球的半徑,分別計算球的表面積、體積輸出計算結果。
3樓:你愛我媽呀
#include
#define pi 3.14
int main()
4樓:匿名使用者
pascal:
半徑是r的球的體積 計算公式是:v=(4/3)πr^3(三分之四乘以π乘以r的三次方)。
半徑是r的球的表面積 計算公式是:s=4πr^2(4倍的π乘以r的二次方)
varr,s,v:real;
begin
write('input r:');
readln(r);
s:=4*pi*r*r;
v:=(4/3)*pi*r*r*r;
writeln('s=',s:0:2);
writeln('v=',v:0:2);
end.
(pi是π,我把結果保留了2位小數)
編寫程式,計算圓球的表面積和體積(要求:圓球的半徑通過鍵盤輸入,輸出的結果保留兩位小數) 50
5樓:風若遠去何人留
#include
#define pi 3.1415926
void main()
6樓:匿名使用者
double r;
const double pi=3.14;
scanf("%lf",&r);
double v,s;
v=pi*r*r*r*3/4;
s=4*pi*r*r;
printf("%.2f%.2f",v,s);
用vb編寫程式for迴圈,讓使用者輸入字串,輸出這個字串中字母a和b出現
dim in str as string dim s1 as integer,s2 as integerin str inputbox 請輸入字串 for i 1 to len in str t mid in str,i,1 if t a or t b thenprint t if t a then...
用c語言程式設計序根據使用者輸入的數字
思路 定義一個字串陣列,把星期名分別放到該字元陣列的1 7位置,再輸入一個整型數n,則直接輸出該陣列n位置的字串。參考 include include int main int n scanf d n puts a n return 0 輸出 7 sunday 給你編譯通過的,你看看 include...
編寫c程式,通過鍵盤輸入圓的半徑,輸出圓的周長和麵積
建構函式以10為半徑 circle double x 建構函式double length double area main 法1 include using namespace std define pi 3.1415926 class circle void get void cal 計算圓的周長...