Spocoman

04. Sum of Two Numbers

Nov 21st, 2021 (edited)
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.10 KB | None | 0 0
  1. using System;
  2.  
  3. namespace SumOfTwoNumbers
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int x = int.Parse(Console.ReadLine());
  10.             int y = int.Parse(Console.ReadLine());
  11.             int m = int.Parse(Console.ReadLine());
  12.             int i = 0;
  13.             int o = 0;
  14.             bool magic = false;
  15.             int counter = 0;
  16.  
  17.             for (i = x; i <= y; i++)
  18.             {
  19.                 for (o = x; o <= y; o++)
  20.                 {
  21.                     counter++;
  22.                     if (i + o == m)
  23.                     {
  24.                         magic = true;
  25.                         break;
  26.                     }
  27.                 }
  28.                 if (magic == true)
  29.                 {
  30.                     break;
  31.                 }
  32.             }
  33.  
  34.             if (magic == false)
  35.             {
  36.                 Console.WriteLine($"{counter} combinations - neither equals {m}");
  37.             }
  38.             else
  39.             {
  40.                 Console.WriteLine($"Combination N:{counter} ({i} + {o} = {m})");
  41.             }
  42.         }
  43.     }
  44. }
  45.  
Add Comment
Please, Sign In to add comment