Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _11._Multiplication_Table_2._0
- {
- class Program
- {
- static void Main(string[] args)
- {
- int number = int.Parse(Console.ReadLine());
- int times = int.Parse(Console.ReadLine());
- do
- {
- Console.WriteLine($"{number} X {times} = {number * times}");
- times++;
- }
- while (times <= 10);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment