Heim > Artikel > Backend-Entwicklung > C-Programm zur Darstellung von Buchstaben in Spiralmuster
Das Spiralmuster, das Buchstaben darstellt, ist wie folgt:
Die Logik, die zur Darstellung von Buchstaben im Spiralmodell verwendet wird, lautet wie folgt:
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("</p><p>"); } } else{ printf("Please Enter from 1 to 13 only</p><p>"); }
Das Folgende ist ein C-Sprachprogramm zur Darstellung von Buchstaben im Spiralmuster.
Live-Demonstration
#include<stdio.h> main(){ int i,rows,k=1; printf("Enter number of Rows for Spiral Alpha Pattern from 1 to 13</p><p>"); 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("</p><p>"); } }else{ printf("Please Enter from 1 to 13 only</p><p>"); } }
Wenn das obige Programm ausgeführt wird, werden die folgenden Ergebnisse erzeugt -
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
Das obige ist der detaillierte Inhalt vonC-Programm zur Darstellung von Buchstaben in Spiralmuster. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!