I'm trying to make a program that can approximate a differential equation via the Euler's method.
Here is my program :
Program diff
implicit none
Real :: t_0, x_0, t_f, k_j, h
Real :: t,x
Integer :: n,j
Write(*,*)'Chose t_0 and x_0'
Read(*,*)t_0, x_0
Write(*,*)'Chose t_f'...