Questions tagged as 'fortran-90'

2
answers

Error Fortran 90: Program received signal SIGSEGV

This is my program: program ejercicio8 implicit none real(kind=8) :: i, k, pi integer, allocatable :: n integer :: j real, dimension(:),allocatable :: array pi= 4*atan(1.0_8) !----------------------------------------------------------------...
asked by 26.01.2018 / 20:38
0
answers

Fortran runtime error: End of file

I want to generate an algorithm that identifies me the minimum value of an array of dimension n read from an a.dat file program ejercicio11 implicit none real, dimension(:), allocatable :: a integer :: n real :: min open(unit=20, file='a.d...
asked by 02.02.2018 / 18:04
0
answers

fortran 95, fortran runtime error, bad real number in item 1 of list input

This is the code, but the error appears on line 29, and the Fortran runtime error appears: end of the file. We do not know what can be treated. It is a program in which we have to get the student's grade through a txt file. program amarillo im...
asked by 31.01.2018 / 13:39