Spocoman

01. Number Pyramid

Nov 22nd, 2021 (edited)
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.27 KB | None | 0 0
  1. using System;
  2.  
  3. namespace NumberPyramid
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int num = int.Parse(Console.ReadLine());
  10.             int counter = 1;
  11.            
  12.             for (int row = 1; row <= num; row++)
  13.             {
  14.                 for (int col = 0; col < row; col++)
  15.                 {
  16.                     if (counter > num)
  17.                     {
  18.                         break;
  19.                     }
  20.                     Console.Write(counter + " ");
  21.                     counter++;
  22.                 }
  23.                 if (counter > num)
  24.                 {
  25.                     break;
  26.                 }
  27.                 Console.WriteLine();
  28.             }
  29.         }
  30.     }
  31. }
  32.  
  33.  
  34. ИЛИ:
  35.  
  36. using System;
  37.  
  38. namespace NumberPyramid
  39. {
  40.     class Program
  41.     {
  42.         static void Main(string[] args)
  43.         {
  44.             int num = int.Parse(Console.ReadLine());
  45.             int counter = 1;
  46.  
  47.             for (int row = 1; row <= num || counter <= num; row++)
  48.             {
  49.                 for (int col = 0; col < row && counter <= num; col++)
  50.                 {
  51.                     Console.Write(counter++ + " ");
  52.                 }
  53.                 Console.WriteLine();
  54.             }
  55.         }
  56.     }
  57. }
  58.  
Add Comment
Please, Sign In to add comment