Advertisement
Spocoman

11. Multiplication Table 2.0

Jan 10th, 2022
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.03 KB | None | 0 0
  1. using System;
  2.  
  3. namespace MultiplicationTable
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int num1 = int.Parse(Console.ReadLine());
  10.             int num2 = int.Parse(Console.ReadLine());
  11.  
  12.             if (num2 < 11)
  13.             {
  14.                 for (int i = num2; i < 11; i++)
  15.                 {
  16.                     Console.WriteLine($"{num1} X {i} = {num1 * i}");
  17.                 }
  18.             }
  19.             else
  20.             {
  21.                 Console.WriteLine($"{num1} X {num2} = {num1 * num2}");
  22.             }
  23.         }
  24.     }
  25. }
  26.  
  27.  
  28.  
  29. Решение с do-while:
  30.  
  31. using System;
  32.  
  33. namespace MultiplicationTable2
  34. {
  35.     class Program
  36.     {
  37.         static void Main()
  38.         {
  39.             int num1 = int.Parse(Console.ReadLine());
  40.             int num2 = int.Parse(Console.ReadLine());
  41.  
  42.             do
  43.             {
  44.                 Console.WriteLine($"{num1} X {num2} = {num1 * num2}");
  45.                 num2++;
  46.             } while (num2 < 11);
  47.         }
  48.     }
  49. }
  50.  
  51.  
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement