Feeds
답변 있음
write a function called tri_area returns the area of a triangle with base b and height h
function function [area] = tri_area (b,h) tri_area = (0.5)*(b)*(h) code to call your function tri_area(2,3) %any...
write a function called tri_area returns the area of a triangle with base b and height h
function function [area] = tri_area (b,h) tri_area = (0.5)*(b)*(h) code to call your function tri_area(2,3) %any...
거의 5년 전 | 0
