import fi.jyu.mit.ohj2.*; /** * Ohjelmalla integroidaan numeerisesti funktio sin(x) * @author Vesa Lappalainen * @version 1.0, 25.03.2003 */ public class Integroi { public static double integroi(double x1, double x2, int tiheys) { double x,dx,summa=0; dx = (x2- x1)/tiheys; for (x=x1+dx/2 ; x