Solicitud Colaboración Habilitación Link Y Envío Actividad 2
Enviado por javibor • 22 de Septiembre de 2012 • 245 Palabras (1 Páginas) • 352 Visitas
CLASE PRINCIPAL
SUMATORIA
public class Sumatoria {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
factorial valor=new factorial();
int suma=0;
int y;
for (y=2; y <= 8; y=y+2){
suma=suma+valor.factorialNumero(y);
JOptionPane.showMessageDialog(null,"La suma del factorial es ......"+ suma);
}
}
********************************************
SUBCLASE
FACTORIAL.
package sumatoria;
/**
*
* @author Estudiante
*/
public class factorial {
public int factorialNumero(int num){
int x;
int fact=1;
for(x=1; x<=num; x++){
fact= fact*x;
}
return fact;
}
}
...