Demorei para entender que o novo fatorial (total) e meu total anterior* novo numero n.
public class TestaFatorial {
public static void main(String[] args) {
int total=1;
for (int n = 1; n <= 10; n++) {
total = total*n;
System.out.println(" total="+ total);
}
System.out.println(" Fatorial 10="+ total);
}
}