/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package com.mycompany.tiendaderopa;
/**
*
* @author ING. HEINER TINOCO
*/
public class factorial {
public static void main(String[] args) {
int factorial = 1;
for (int i = 1; i < 11; i++) {
factorial *= i;
System.out.println("Factorial de " + i + " = " + factorial);
}
}
}