이자를 갚아 나가는 문제 입니다.
제가 작성한 포트란 언어는
10 if(a.ge.25.)then
a=a*(1.015)-25
b=b+1
go to 10
print 20, b, a
20 format(i3, 1x, 'month, f8.5, '$')
end if
stop
end
a=300
b=0
10 a=a*(1.015)-5
b=b+1
if(a.ge.25.)go to 10
print 20, b, a
20 format(i3, 1x, 'month, f8.5, '$')
end if
stop
end
이렇게 두가지 만들어 봤는데 혹시 틀린 부분이 있나요~~?