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