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