Advertisement
Spocoman

Combinations

Dec 12th, 2021 (edited)
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.67 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Combinations
  4. {
  5.     class Program
  6.     {
  7.         public static void Main()
  8.         {
  9.             int n = int.Parse(Console.ReadLine());
  10.  
  11.             int combinations = 0;
  12.  
  13.             for (int a = 0; a <= n; a++)
  14.             {
  15.                 for (int b = 0; b <= n; b++)
  16.                 {
  17.                     for (int c = 0; c <= n; c++)
  18.                     {
  19.                         if (a + b + c == n)
  20.                         {
  21.                             combinations++;
  22.                         }
  23.                     }
  24.                 }
  25.             }
  26.  
  27.             Console.WriteLine(combinations);
  28.         }
  29.     }
  30. }
  31.  
  32.        
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement