Learn-c-by-examples-right-triangle-printing-in-c

提供:Dev Guides
移動先:案内検索

Cでの右三角印刷

角度が90°の三角形は、直角三角形と呼ばれます。 星*を直角三角形で印刷する方法を見てみましょう。

アルゴリズム

アルゴリズムは次のようになります-

Step 1 - Take number of rows to be printed, n.
Step 2 - Make outer iteration I for n times to print rows
Step 3 - Make inner iteration for J to I
Step 3 - Print "*" (star)
Step 4 - Print NEWLINE character after each inner iteration
Step 5 - Return

疑似コード

次のように、上記のアルゴリズムの擬似コードを導出できます-

procedure right_triangle

   FOR I = 1 to N DO
      FOR J = 1 to I DO
         PRINT "*"
      END FOR
      PRINT NEWLINE
   END FOR

end procedure

実装

Cでの直角三角形の実装は次のとおりです-

#include <stdio.h>

int main() {
   int n,i,j;

   n = 5;

   for(i = 1; i <= n; i++) {
      for(j = 1; j <= i; j++)
         printf("* ");

      printf("\n");
   }
   return 0;
}

出力は次のようになります-

*
* *
* * *
* * * *
* * * * *