Al final pude hacerlo, aca les dejo la solución por si a alguien le sirve de algo.! class Program
{
static void Main(string[] args)
{
//DECLARACION DE VARIABLES Y CONSTANTES
const int num = 2;
int cantN, n=0;
//ENTRADA DE DATOS
Console.WriteLine("Ingrese la ultima potencia a la cual debe elevarse el numero 2");
cantN = validarPos(n);
//PROCESO DE DATOS
while (n<=cantN)
{
Console.WriteLine(num + "^" + n + "=" + Math.Pow(num, n));
n++;
}
//SALIDA DE DATOS
Console.Write("Presione cualquier tecla para continuar...");
Console.ReadKey(true);
}
static int validarPos(int ep)
{
while (ep <= 0)
{
Console.WriteLine("Solo enteros positivos:");
ep = int.Parse(Console.ReadLine());
}
return ep;
}
}