Facebook
From Beefy Coyote, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 230
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApp1
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             for (int i = 1; i < 10; i++)
  14.             {
  15.                 for (int j = 1; j < 10; j++)
  16.                 {
  17.                     Console.WriteLine(i + " * " + j + " = " + i * j);
  18.                 }
  19.  
  20.             }
  21.             Console.ReadLine();
  22.         }
  23.     }
  24. }