Tuesday, March 31, 2015

Write a Fortran Program finds big number


1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
!author:Md. Abde Mannaf
!The program finds big number
program big_number
    implicit none
    integer::a,b,c,big
    print*,'enter the value of a,b,c'
    read*,a,b,c
    if(a>b) then
        if(a>c) then
            big=a
        else
            big=c
        end if
    else
        if(b>c) then
            big=b
        else
            big=c
        end if
    end if
    print*,'biggest number is =',big
end program big_number

No comments:

Post a Comment