Write a program in C++ to display the pattern like a pyramid using asterisk and each row contain an odd number of asterisks

  • برمجة سي بلس بلس
  • برمجة

Write a program in C++ to display the pattern like a pyramid using asterisk and each row contain an odd number of asterisks

Sample Output:

 Display such a pattern like a pyramid containing odd number of asterisk in each row:                                                         
-----------------------------------------------------------------------------------------                                                     
 Input number of rows: 5                                               
                                                                       
    *                                                                  
   ***                                                                 
  *****                                                                
 *******

الأجوبة

#include <iostream>
using namespace std;

int main()
{
   int i,j,n;
    cout << "\n\n Display such a pattern like a pyramid containing odd number of asterisk in each row:\n";
    cout << "-----------------------------------------------------------------------------------------\n";
    cout << " Input number of rows: ";
    cin >> n;
  for(i=0;i<n;i++)
   {
     for(j=1;j<=n-i;j++)
     cout<<" ";
     for(j=1;j<=2*i-1;j++)
       cout<<"*";
     cout<<endl;
   }
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...