Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace MultiplicationTable
- {
- class Program
- {
- static void Main(string[] args)
- {
- int x = 0;
- int y = 0;
- for (x = 1; x <= 10; x++)
- {
- for (y = 1; y <= 10; y++)
- {
- Console.WriteLine($"{x} * {y} = {x * y}");
- }
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment