代码
program ex_04_02
real r,s,pi
pi = 3.1415926D0
write(*,*) "Please input the r:"
read (*,*) r
s = pi*r**2
write(*,*) "The result is:",s
end
这里,先输入半径的大小,然后计算面积s,最后输出面积。
program ex_04_02
real r,s,pi
pi = 3.1415926D0
write(*,*) "Please input the r:"
read (*,*) r
s = pi*r**2
write(*,*) "The result is:",s
end
这里,先输入半径的大小,然后计算面积s,最后输出面积。
本文标题:已知圆的半径计算面积
本文链接:https://www.haomeiwen.com/subject/ndkmxftx.html
网友评论