I try to run the next fortran code in Eclipse-Fortran and get the error: "Launch failed. Binary not found." Can you please tell me what might be the problem?
program P1
A=17.34
B=27.6E-2
K=23
P=(A-B)/0.42
Q=P*B+2
M=(K-6)/4
N=A
I=(M+N)**2
write(6,1)A,B,P,Q
1 format (1H 4E15.4)
write(6,2)K,M,N,I
2 format (1H 4I15)
stop
end