1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | !Author:Md. Abde Mannaf !The program finds area of the triangle read side program area_triangle implicit none integer::a,b,c real::area,s,sqrt print*,'enter the value of three sides of triangle a,b,c' read*,a,b,c if(a+b>c .and. b+c>a .and. c+a>b) then s=(a+b+c)/2 area=sqrt(s*(s-a)*(s-b)*(s-c)) print*,'area of triangle =',area else print*,'input value is not valid' end if end program area_triangle |
Tuesday, March 31, 2015
Write a Fortran program & Find the area of the triangle
Subscribe to:
Post Comments (Atom)
Very informative article.Thank you author for posting this kind of article .
ReplyDeletehttp://www.wikitechy.com/view-article/write-a-c-program-to-find-area-of-triangle-with-example-and-explanation
Both are really good,
Cheers,
Venkat
Nice post.... Fantastico
ReplyDeleteI think I solve writing similar program.
ReplyDeleteGreat!
I was running it with my system and they are telling me that non-numeric character in statement label at (1)
ReplyDeletethey are telling me that non-numeric character in statement label at (1)
ReplyDeleteWhat of using the formula A=1/2 bh
ReplyDelete