Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

โปรแกรม C สำหรับ Arrow Star Pattern


ให้หมายเลข n และเราต้องพิมพ์รูปแบบดาวลูกศรจำนวนดาวสูงสุด n ดวง

รูปแบบดาวของอินพุต 4 จะมีลักษณะดังนี้ -

โปรแกรม C สำหรับ Arrow Star Pattern

ตัวอย่าง

Input: 3
Output:

โปรแกรม C สำหรับ Arrow Star Pattern

Input: 5
Output:

โปรแกรม C สำหรับ Arrow Star Pattern

วิธีการที่ใช้ด้านล่างมีดังนี้ −

  • ป้อนข้อมูลเป็นจำนวนเต็ม
  • จากนั้นพิมพ์ n ช่องว่างและ n stars
  • ลดจนถึง n>1.
  • ตอนนี้เพิ่มขึ้นจนถึง 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)

ตัวอย่าง

#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;
}

ผลลัพธ์

หากรันโค้ดด้านบน มันจะสร้างผลลัพธ์ต่อไปนี้ -

โปรแกรม C สำหรับ Arrow Star Pattern