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

C โปรแกรมแสดงตัวเลขในรูปแบบ X


อ้างถึงอัลกอริทึมที่ระบุด้านล่างสำหรับโปรแกรม C เพื่อแสดงตัวเลขในรูปแบบ X

อัลกอริทึม

Step 1: Start
Step 2: Declare variables
Step 3: Read number of rows
Step 4: for loop satisfies
  • if(i==j || i+j==rows-1)
    • print i+1
  • Print " "
Step 5: Print new line Step 6: Stop

ตรรกะในการพิมพ์ตัวเลขในรูปแบบ X มีดังนี้ -

for(i=0;i<rows;i++){
   for(j=0;j<rows;j++){
      if(i==j || i+j==rows-1){
         printf("%d",i+1);
      }else{
         printf(" ");
      }
   }
   printf("\n");
}

โปรแกรม

ต่อไปนี้เป็นโปรแกรม C เพื่อแสดงตัวเลขในรูปแบบ X -

#include<stdio.h>
main(){
   int i,j,rows;
   printf("Enter number of rows:\n");
   scanf("%d",&rows);
   for(i=0;i<rows;i++){
      for(j=0;j<rows;j++){
         if(i==j || i+j==rows-1){
            printf("%d",i+1);
         }else{
            printf(" ");
         }
      }
      printf("\n");
   }
}

ผลลัพธ์

เมื่อโปรแกรมข้างต้นทำงาน มันจะให้ผลลัพธ์ดังต่อไปนี้ −

Enter number  of rows:10
1           1
  2        2
    3    3
      4 4
       55
       66
      7 7
    8     8
  9        9
10          10