Computer >> 컴퓨터 >  >> 프로그램 작성 >> C 프로그래밍

그 합이 완전제곱이 되도록 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