Upload Code
loading-left
loading loading loading
loading-right

Loading

Profile
No self-introduction
codes (1)
Program Secant
no vote
Program hitung_secant; uses wincrt; function f(x:real):real;          begin          f:=x*x+x-94;          end; function error(x1,x2:real):real;          var          err:real;          begin          err:=(((x2-x1)/x2)*100);          if err<0 then             error:=err*(-1)          else              error:=err;          end; function
graha
2016-08-23
1
1
No more~