Tuesday, March 31, 2015

Write a Fortran program & Find the area of the triangle


 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

6 comments:

  1. Very informative article.Thank you author for posting this kind of article .

    http://www.wikitechy.com/view-article/write-a-c-program-to-find-area-of-triangle-with-example-and-explanation


    Both are really good,
    Cheers,
    Venkat

    ReplyDelete
  2. I think I solve writing similar program.
    Great!

    ReplyDelete
  3. I was running it with my system and they are telling me that non-numeric character in statement label at (1)

    ReplyDelete
  4. they are telling me that non-numeric character in statement label at (1)

    ReplyDelete
  5. What of using the formula A=1/2 bh

    ReplyDelete