MATLAB编写函数文件求半径为r的圆的面积和周长,求救啊,
问题描述:
MATLAB编写函数文件求半径为r的圆的面积和周长,求救啊,
答
1.
function s=mianji(r)
s=pi*r*r;
end
2.
function l=zhouchang(r)
l=2*pi*r;
end