Hello Guys,
I am new starter with Fortran, I am trying to use iteration to find the value of i in the following equation:
Tan(i)/Cos(i)=Y
My program is as below:
program hello
Implicit none
parameter(PI=3.14159265359)
Integer::i
real::X,pi,y,s,V,D
read(*,*)y
do i=1,90,1...