输出 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<=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("
%d",((2*i)-1)); i++;    } }

输出

如果我们运行以上程序,它将生成以下输出

1
3
5
7
9

更新于: 2019-Jul-30

140 次浏览

启动你的 职业生涯

完成该课程,获得认证

开始
广告