n 個の数値が与えられた場合、プログラムはこれらの n 数値の合計が完全二乗数であることを見つけなければなりません
Input : 5 Output : 1 3 5 7 9 1+3+5+7+9=25 i.e (5)^2
START Step 1 : Declare a Macro for size let’s say of 5 and i to 1 Step 2: loop While till i<=SIZE Step 2.1 -> printing (2*i)-1 Step Step 2.2 -> incrementing i with 1 Step Step3-> End loop While STOP
#include <stdio.h> # define SIZE 5 int main() { int i=1; while(i<=SIZE) { printf("</p><p> %d",((2*i)-1)); i++; } }
上記のプログラムを実行すると、次の出力が生成されます
1 3 5 7 9
以上がn 個の数値をその合計が完全二乗になるように出力します。の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。