首頁 > 後端開發 > C++ > 主體

在C語言中編寫一個列印數字模式的程序

王林
發布: 2023-08-26 12:05:05
轉載
1409 人瀏覽過

程式描述

透過接受使用者提供的行數來列印數字模式。

輸入: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語言中編寫一個列印數字模式的程序

以上是在C語言中編寫一個列印數字模式的程序的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板