Advertisement
marto9119

Untitled

Feb 16th, 2023
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.17 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace _06._Rhombus_of_Stars
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int parameters = int.Parse(Console.ReadLine());
  10.             int f = 0;
  11.             for (int row = 1; row <= parameters; row++)
  12.             {
  13.                 for (int n = 1; n <= parameters - f; n++)
  14.                 {
  15.                     Console.Write(" ");
  16.                 }
  17.                 Console.Write("*");
  18.                 for (int n = 1; n < row; n++)
  19.                 {
  20.                     Console.Write(" *");
  21.                 }
  22.                 Console.WriteLine();
  23.                 f++;
  24.             }
  25.             int startt = parameters - 1;
  26.             f -= 2;
  27.             for (int row = startt; row > 0; row--)
  28.             {
  29.                 for (int i = 1; i <= parameters-f; i++)
  30.                 {
  31.                     Console.Write(" ");
  32.                 }
  33.                 Console.Write("*");
  34.                 for (int i = 1; i < row; i++)
  35.                 {
  36.                     Console.Write(" *");
  37.                 }
  38.                 Console.WriteLine();
  39.                 f--;
  40.             }
  41.  
  42.  
  43.         }
  44.     }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement