System.out.println("Error Absoluto :" + base.getErrorAbsoluto(Xe, Xa));
System.out.println("Error Relativo :" + base.getErrorRelativo(Xe, Xa));
System.out.println("Error Relativo %:" + base.getErrorRelativoPorcentual(Xe, Xa));
}
});
submenu.agregar("Xe:" + base.getFactorial(9) + " Xa:" + Math.sqrt((18 * Math.PI)) * Math.pow((9 / Math.E), 9), new MenuCallback() {
public void ejecutar() {
double Xe = base.getFactorial(9);
double Xa = Math.sqrt((18 * Math.PI)) * Math.pow((9 / Math.E), 9);