23 lines
640 B
C#
23 lines
640 B
C#
namespace tabellina;
|
|
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
//dichiarazione e inizializzazione variabili
|
|
long fattore1, fattore2, prodotto;
|
|
fattore2=1;
|
|
//input
|
|
Console.Write("Inserire un numero: ");
|
|
fattore1=Convert.ToInt64(Console.ReadLine());
|
|
//calcolo tabellina
|
|
for(fattore2=1; fattore2<=10; fattore2++){
|
|
prodotto=fattore1*fattore2;
|
|
//output ogni tabellina
|
|
Console.Write(fattore1);
|
|
Console.Write(" x " +fattore2);
|
|
Console.WriteLine(" = " +prodotto);
|
|
}
|
|
}
|
|
}
|