打印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("\n %d",((2*i)-1)); i++;
}
}输出结果
如果我们运行上面的程序,那么它将生成以下输出
1 3 5 7 9
热门推荐
10 病人祝福语老师寄语简短
11 新娘生孩子祝福语简短
12 婆婆66岁祝福语简短
13 今天孩子高考祝福语简短
14 送彩票生日祝福语简短
15 分别祝福语简短情话英文
16 画室揭牌仪式祝福语简短
17 女友妈妈生日祝福语简短
18 离别赠言离职祝福语简短