using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace tabla_multiplicar
{
class Program
{
static void Main(string[] args)
{
tabla t = new tabla();
char respuesta = 's';
do
{
Console.Clear();
Console.WriteLine("escribe el numero");
int num = Convert.ToInt32(Console.ReadLine());
int[] arreglo = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
int res;
for (int i = 0; i < arreglo.Length; i++)
{
res = num * arreglo[i];
Console.WriteLine(+num + "x" + arreglo[i] + "=" + res);
}
Console.WriteLine("quieres hacer otra tabla s/n");
respuesta = Convert.ToChar(Console.ReadLine());
} while (respuesta == 's' | respuesta == 'S');
Console.ReadKey();
}
}
}
Visiten para mas información sobre estos temas:
la instancia a tabla no va.
ResponderEliminar