数値パターンを出力するプログラムを C 言語で作成する

王林
リリース: 2023-08-26 12:05:05
転載
1408 人が閲覧しました

プログラムの説明

ユーザーが指定した行数を受け入れて数値パターンを印刷します。

入力: 5 行

1
6 2
10 7 3
13 11 8 4
15 14 12 9 5
ログイン後にコピー

アルゴリズム

Print the pattern from the end of each Row
Complete the last column of each Row
Start from the Second Last Column of the second row
Repeat till the number of rows specified by the User.
ログイン後にコピー

/*Program to print Numeric Pattern */
#include<stdio.h>
int main()
{
   int k, l, m, count=1;
   int rows;
   clrscr();
   printf("</p><p> Please enter the number of rows for the Numeric Pattern: ");
   scanf("%d",&rows);
   for (k = 1; k <= rows; k++) {
      m = count;
      for (l = 1; l <= k; l++) {
         printf("%d",m);
         m = m - (rows + l - k);
      }
      printf("</p><p>");
      count = count + 1 + rows - k;
   }
   getch();
   return 0;
}
ログイン後にコピー

出力

数値パターンを出力するプログラムを C 言語で作成する

# ##################################

以上が数値パターンを出力するプログラムを C 言語で作成するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:tutorialspoint.com
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート