打印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<=SIZE
      Step 2.1 -> printing (2*i)-1 Step
      Step 2.2 -> incrementing i with 1 Step
   Step3-> End loop While
STOP

Example

中文翻译为:

示例

#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

以上就是打印n个数字,使它们的和是一个完全平方数的详细内容,更多请关注编程之家其它相关文章

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...