主题:编程-数组入门
program main
implicit none
integer :: ma(2,2)=(/1,2,3,4/)
write(*,*) ma
stop
end
implicit none
integer :: ma(2,2)=(/1,2,3,4/)
write(*,*) ma
stop
end
编译时报错,说定义数组那一行“Incompatible ranks 2 and 1 in assignment.”
这跟书上说的一样啊,为啥编译不过呢?求高手指点。