数値を表すスパイラル パターンは次のとおりです -
数字をスパイラル パターンで表示するロジックは次のとおりです-
for(i=1;i<=rows*2;i+=2){ if(k%2==1){ printf("%3d %3d",i,i+1); k++; }else{ printf("%3d %3d",i+1,i); k++; } printf("</p><p>"); }
以下は、螺旋数を表す C プログラムです -
#include<stdio.h> main(){ int i,rows,k=1; printf("Enter number of Rows for Spiral Pattern</p><p>"); scanf("%d",&rows); for(i=1;i<=rows*2;i+=2){ if(k%2==1){ printf("%3d %3d",i,i+1); k++; }else{ printf("%3d %3d",i+1,i); k++; } printf("</p><p>"); } }
上記のプログラムを実行すると、次の結果が生成されます -
Enter number of Rows for Spiral Pattern 10 1 2 4 3 5 6 8 7 9 10 12 11 13 14 16 15 17 18 20 19
以上が螺旋パターンで数値を表現する C プログラムの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。