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 |
Tuesday, March 31, 2015
Write a Fortran Program finds big number
Write a Fortran program & finds area,circumference and vol of a circle
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | !author:Md. Abde Mannaf !The program finds area,circumference and vol of a circle program area_vol implicit none real::area,cir,vol,r real,parameter::pi=3.1416 print*,'Enter the value of radus=' read*,r area=pi*r**2 vol=(4.0/3.0)*pi*r**3 cir=2*pi*r print*,'area of the circle=',area print*,'volume of the circle=',vol print*,'circumference of the circle=',cir end program area_vol |
write a program & finds any roots of 2nd degree Equation. ax^2+bx+c=0
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 !ax^2+bx+c=0 !The program finds any roots of 2nd degree Equation program roots_eqn_any implicit none real::a,b,c,root1,root2,d,p,q print*,'enter the value of a,b,c' read*,a,b,c d=b**2-4.0*a*c if(d>=0.00) then root1=-b+sqrt(d) root2=-b-sqrt(d) print*,'root one is=',root1 print*,'root two is=',root2 else p=-b/(2.0*a) q=sqrt(abs(d)) print*,'1st root',p,'+i',q print*,'2st root',p,'-i',q end if end program roots_eqn_any |
Write a Fortran Program Convert Celsius to Fahrenheit
1 2 3 4 5 6 7 8 9 10 11 | ! Author: Mannaf !temp conversation program temp_conversition implicit none real ::fahrenheit,celsius print*,"type value celsius" read*,celsius print*,"celsius" fahrenheit=1.8*celsius+32.0 print*, "fahrenheit=", fahrenheit end program temp_conversition |
Write a Fortran Programme find area and input three point of Triangle
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | !Author:Md. Abde Mannaf !any point given and putting value !The program finds area of triangle & input point program area_triangle implicit none real::area,s,sqrt,x1,y1,x2,y2,x3,y3,p,a,b,c print*,'enter the value of three sides of triangle x1,y1' read*,x1,y1 print*,'enter the value of three sides of triangle x2,y2' read*,x2,y2 print*,'enter the value of three sides of triangle x3,y3' read*,x3,y3 a=sqrt((x2-x1)**2+(y2-y1)**2) b=sqrt((x3-x2)**2+(y3-y2)**2) c=sqrt((x1-x3)**2+(y1-y3)**2) 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 p=2*s print*,'perimeter is=',p else print*,'triangle is not valid ' end if end program area_triangle |
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 |
Wednesday, March 25, 2015
area and perimeter of a rectangle
1 2 3 4 5 6 7 8 9 10 11 12 | !The program finds area and perimeter of a rectangle !Using an input system program area_perimeter implicit none integer::p,q,area,perimeter print*,"Enter the value of p & q" print*,"Use comma or blank space to separate value" read*,p,q area=p*q; perimeter=2*(p+q); print*,"area is=",area, "perimeter is=",perimeter end program area_perimeter |
Finds Area of a Circle
1 2 3 4 5 6 7 8 9 10 11 | !write a FORTRAN program that reads a radius of a circle & print its area !The program finds area of a circle program area_circle implicit none real, parameter::pi=3.1416 real::area,r print*,'Enter the value of radius=' read*,r area=pi*r**2 print*,'Area of the circle=',area end program area_circle |
শুরু হল FORTRAN প্রোগ্রামিং
ফরট্রান প্রোগ্রাম করতে হলে প্রথমে জানতে হবে এর সিনট্যাক্স সম্পর্কে।
কোনটা দারা কি কাজ হয় এই সম্পর্কে যদি ভাল জ্ঞান থাকে তাহলে প্রোগ্রাম করা সহজ হয়। আমরা এই পর্বে কিছু সিনট্যাক্স সম্পর্কে জানব।
যেমনঃ
Monday, March 23, 2015
First program
1 2 3 4 5 6 7 | !author:Md. Abde Mannaf !The is first program program first implicit none এখেনে প্রোগ্রাম লিখতে হবে। print*,'hello world' end program first |
Subscribe to:
Posts (Atom)