Computer >> Máy Tính >  >> Lập trình >> lập trình C

C Chương trình cho mẫu hình sao mũi tên

Cho một số n và chúng ta phải in ra mẫu hình sao mũi tên với số lượng n sao tối đa.

Hình sao của đầu vào 4 sẽ giống như -

C Chương trình cho mẫu hình sao mũi tên

Ví dụ

Input: 3
Output:

C Chương trình cho mẫu hình sao mũi tên

Input: 5
Output:

C Chương trình cho mẫu hình sao mũi tên

Cách tiếp cận được sử dụng dưới đây như sau -

  • Nhận dữ liệu đầu vào ở dạng số nguyên.
  • Sau đó, in n dấu cách và n dấu sao.
  • Giảm dần cho đến n> 1.
  • Bây giờ tăng dần cho đến n.
  • Và in dấu cách và dấu sao theo thứ tự tăng dần.

Thuật toán

Start
In function int arrow(int num)
   Step 1-> declare and initialize i, j
   Step 2-> Loop For i = 1 and i <= num and i++
      Loop For j = i and j < num and j++
         Print a space
      Loop For j = i and j <= num and j++
         Print "*"
         Print newline
   Step 3-> Loop For i = 2 and i <= num and i++
      Loop For j= 1 and j < I and j++
         Print a space
      Loop For j = 1 and j <= i and j++
         Print "*"
         Print newline
In function int main()
   Step 1-> declare and initialize num = 4
   Step 2-> call arrow(num)

Ví dụ

#include <stdio.h>
// arrow function
int arrow(int num) {
   int i, j;
   // Prints the upper part of the arrow
   for (i = 1; i <= num; i++) {
      // to print the spaces
      for (j = i; j < num; j++) {
         printf(" ");
      }
      // to print the * for the pattern
      for (j = i; j <= num; j++) {
         printf("*");
      }
      printf("\n");
   }
   // Prints lower part of the arrow
   for (i = 2; i <= num; i++) {
      // to print the spaces
      for (j = 1; j < i; j++) {
         printf(" ");
      }
      // to print the * for the pattern
      for (j = 1; j <= i; j++) {
         printf("*");
      }
      printf("\n");
   }
   return 0;
}
int main() {
   // get the value from user
   int num = 4;
   // function calling
   arrow(num);
   return 0;
}

Đầu ra

Nếu chạy đoạn mã trên, nó sẽ tạo ra kết quả sau -

C Chương trình cho mẫu hình sao mũi tên