Advertisement
Spocoman

03. Combinations

Nov 21st, 2021 (edited)
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.64 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Combinations
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int num = int.Parse(Console.ReadLine());
  10.             int counter = 0;
  11.  
  12.             for (x = 0; x <= num; x++)
  13.             {
  14.                 for (y = 0; y <= num; y++)
  15.                 {
  16.                     for (z = 0; z <= num; z++)
  17.                     {
  18.                         if (num == x + y + z)
  19.                         {
  20.                             counter++;
  21.                         }
  22.                     }
  23.                 }
  24.             }
  25.             Console.WriteLine(counter);
  26.         }
  27.     }
  28. }
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement