打印n个数字,使它们的和是一个完全平方数

打印n个数字,使它们的和是一个完全平方数

给定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 printing (2*i)-1 Step
Step 2.2 -> incrementing i with 1 Step
Step3-> End loop While
STOP

登录后复制

Example

的中文翻译为:

示例

#include
# define SIZE 5
int main() {
int i=1;
while(i