Spocoman

09. Sum of Two Numbers

Nov 22nd, 2021 (edited)
97
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 firstNum = int.Parse(Console.ReadLine());
  10.             int secondNum = int.Parse(Console.ReadLine());
  11.             int magicNum = int.Parse(Console.ReadLine());
  12.             int combinations = 0;
  13.             bool isFound = false;
  14.  
  15.             for (int i = firstNum; i <= secondNum; i++)
  16.             {
  17.                 for (int j = firstNum; j <= secondNum; j++)
  18.                 {
  19.                     combinations++;
  20.                     if (i + j == magicNum)
  21.                     {
  22.                         Console.WriteLine($"Combination N:{ combinations} ({ i} + { j} = { magicNum})");
  23.                         isFound = true;
  24.                         break;
  25.                     }
  26.                 }
  27.                 if (isFound) {
  28.                     break;
  29.                 }
  30.             }
  31.             if (isFound == false)
  32.             {
  33.                 Console.WriteLine($"{ combinations} combinations - neither equals { magicNum}");
  34.             }
  35.         }
  36.     }
  37. }
  38.  
Add Comment
Please, Sign In to add comment