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

โปรแกรม C เพื่อแสดงตัวอักษรในรูปแบบเกลียว


รูปแบบเกลียวเพื่อแสดงตัวอักษรมีดังนี้ −

โปรแกรม C เพื่อแสดงตัวอักษรในรูปแบบเกลียว

ตรรกะที่ใช้แทนตัวอักษรในรูปแบบเกลียวมีดังนี้ −

if(rows<=13 && rows>=1){
   for(i=1;i<=rows*2;i+=2){
      if(k%2==1){
         printf("%c %c",i+64,i+65);
         k++;
      }else{
         printf("%c %c",i+65,i+64);
         k++;
      }
      printf("\n");
   }
}
else{
   printf("Please Enter from 1 to 13 only\n");
}

โปรแกรม

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

#include<stdio.h>
main(){
   int i,rows,k=1;
   printf("Enter number of Rows for Spiral Alpha Pattern from 1 to 13\n");
   scanf("%d",&rows);
   if(rows<=13 && rows>=1){
      for(i=1;i<=rows*2;i+=2){
         if(k%2==1){
            printf("%c %c",i+64,i+65);
            k++;
         }else{
            printf("%c %c",i+65,i+64);
            k++;
         }
         printf("\n");
      }
   }else{
      printf("Please Enter from 1 to 13 only\n");
   }
}

ผลลัพธ์

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

Enter number of Rows for Spiral Alpha Pattern from 1 to 13
10
A B
D C
E F
H G
I J
L K
M N
P O
Q R
T S