1
resposta

Resposta

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net;

namespace ExemploWhile { class Program { static void Main(string[] args) { int contador = 1; while (contador <= 10) { Console.WriteLine(contador); contador++;

        }
    }
}

}

1 resposta

Olá Gutemberg,

Você poderia explicar melhor qual a sua dúvida?