কম্পিউটার

সি-তে স্কোয়ারের ভিতরে স্কয়ার প্রিন্ট করার প্রোগ্রাম


প্রোগ্রামের বিবরণ

নীচে দেখানো হিসাবে একটি স্কোয়ারের ভিতরে স্কোয়ার প্রিন্ট করুন

সি-তে স্কোয়ারের ভিতরে স্কয়ার প্রিন্ট করার প্রোগ্রাম

অ্যালগরিদম

Accept the number of rows the outer Square to be drawn
Display the Outer Square with the number of rows specified by the User.
Display another square inside the outer square.

উদাহরণ

/* Program to print Square inside Square */
#include <stdio.h>
int main()
{
   int r, c, rows;
   clrscr();
   printf("Enter the Number of rows to draw Square inside a Square: ");
   scanf("%d", &rows);
   printf("\n");
   for (r = 1; r <= rows; r++){
      for (c = 1; c <= rows; c++){
         if ((r == 1 || r == rows || c == 1 || c == rows) || (r >= 3 && r <= rows - 2 && c >= 3 && c             <= rows - 2) && (r == 3 || r == rows - 2 || c == 3 || c == rows - 2)){
               printf("#");
         }
         else{
            printf(" ");
         }
      }
      printf("\n");
   }
   getch();
   return 0;
}

আউটপুট

সি-তে স্কোয়ারের ভিতরে স্কয়ার প্রিন্ট করার প্রোগ্রাম


  1. C তে নন স্কোয়ার নম্বর প্রিন্ট করুন

  2. C প্রোগ্রামে প্রদত্ত আকারের সর্বাধিক সমষ্টি বর্গ উপ-ম্যাট্রিক্স প্রিন্ট করুন।

  3. সি প্রোগ্রামে একটি বর্গক্ষেত্রের ভিতরে একটি পাতার ক্ষেত্রফল?

  4. একটি বর্গক্ষেত্রের ভিতরে একটি পাতার ক্ষেত্রফল?