給定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中文網其他相關文章!