Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#의 다양한 별 패턴 프로그램

<시간/>

C, C++, Java와 같은 다른 프로그래밍 언어와 마찬가지로 C#에서도 시작 패턴 프로그램을 쉽게 표시할 수 있습니다.

C#의 다양한 별 패턴 프로그램

하나씩 살펴보겠습니다.

using System.IO;
using System;
class Program {
   static void Main() {
      for (int i = 1; i <= 6; ++i) {
         for (int j = 1; j <= i; ++j) {
            Console.Write("*");
         }
         Console.WriteLine();
      }
   }
}

출력

*
**
***
****
*****
******

다른 시리즈를 보자.

using System.IO;
using System;
class Program {
   static void Main() {
      int i, j, k;
      int n = 6,
      // loop to print the series
      for (i = 1; i <= n; i++) {
         for (j = 1; j <= n - i; j++) {
               Console.Write(" ");
         }
         for (k = 1; k <= i; k++) {
            Console.Write("*");
         }
         Console.WriteLine("");
      }
      Console.ReadLine();
   }
}

출력

*
**
***
****
*****
******

다른 시리즈를 보자.

using System.IO;
using System;
class Program {
   static void Main() {
      for (int i = 6; i >= 1; --i) {
         for (int j = 1; j >= i; ++j) {
            Console.Write("*");
         }
         Console.WriteLine();
      }
   }
}

출력

*
**
***
****
*****
******

여기 또 다른 시리즈가 있습니다.

using System.IO;
using System;
class Demo {
   static void Main() {
      int a = 1, spaces, k = 6, i = 0, j = 0;
      spaces = k - 1;
      for(i=1; i<k*2; i++) {
         for(j=1; j<=spaces; j++) {
            Console.Write(" ");
         }
         for(j=1; j<a*2; j++) {
            Console.Write("*");
         }
         Console.WriteLine("");
         if(i < k) {
            spaces--;
            a++;
         } else {
            spaces++;
            a--;
         }
      }
   }
}

출력

*
***
*****
*******
*********
***********
*********
*******
*****
***
*