কম্পিউটার

হীরার আকার প্রিন্ট করার জন্য C++ প্রোগ্রাম


এটি হীরার আকার প্রিন্ট করার জন্য একটি C++ প্রোগ্রাম।

অ্যালগরিদম

Begin
   Take the no of rows n means the dimension of the diamond shape as input.
   Declare the variables i, j and initialize space=1.
   Initialize space = n-1.
   Run for loop till n.
      Run for loop to print space.
      Decrease space.
      Run for loop to print stars.
   Now do the same thing in reverse order.
   Initialize space = 1.
   Run for loop till n.
      Run for loop to print space.
      Increase space.
      Run for loop to print stars.
End

উদাহরণ

#include<iostream>
using namespace std;
main() {
   int n, i, j, space=1;
   cout<<"Enter number of rows : ";
   cin>>n;
   space=n-1;
   for (i=1; i<=n; i++) {
      for(j=1; j<=space; j++) {
         cout<<" "; //print space.
      }
      space--;
      for(j=1; j<=(2*i-1); j++) {
         cout<<"*"; //print stars.
      }
      cout<<"\n";
   }
   //in reverse order.
   space=1;
   for (i=1; i<=n; i++) {
      for(j=1; j<=space; j++) {
         cout<<" "; //print space.
      }
      space++;
      for(j=1; j<=(2*(n-i)-1); j++) {
         cout<<"*"; //print stars.
      }
      cout<<"\n";
   }
}

আউটপুট

Enter number of rows: 4
*
***
*****
*******
*****
***
*

  1. C++ এ ত্রিভুজের সেন্ট্রোয়েড খুঁজে বের করার প্রোগ্রাম

  2. C++ এ সমান্তরালগ্রামের ক্ষেত্রফল বের করার প্রোগ্রাম

  3. C++ ব্যবহার করে একটি গাছের বিজোড় স্তরে নোডগুলি প্রিন্ট করার জন্য প্রোগ্রাম

  4. C++ এ ঠালা পিরামিড এবং ডায়মন্ড প্যাটার্ন প্রিন্ট করার জন্য প্রোগ্রাম