You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see that there have been some Fortran codes submitted but that Fortran is not available as an option on the site. Looking at the code interactive_euclidean.f90 , I suggest that
READ(*, '(i10)', iostat=ioerror) temp_a, temp_b
be replaced by
READ(*, *, iostat=ioerror) temp_a, temp_b
which will work even if the user enters two numbers on the same line before pressing Enter.