Não estou conseguindo exibir o fatorial
Não estou conseguindo exibir o fatorial
Priscila, já que você está gerando uma classe, ao invés do messagebox, utilize o método WriteLine, da classe System.Console:
public Static void main (String [] args) {
int fatorial = 1;
for (int n = 1; n<=10; n++) {
fatorial = fatorial * n;
System.Console.WriteLine("Fat(" + n + ") =
" + fatorial);
}
System.Console.ReadKey();
}
Qualquer dúfica, é só dizer.
Valew já consegui resolver