You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
-
ا
سلام بفرما
#include<iostream.h>
#include<conio.h>
#include<math.h>
int main()
{ for(int i=0;i<6;i++)
{ for(int k=10;k>i;k--)
cout<<" ";
for(int j=0;j<i;j++)
cout<<"*"<<' ';
cout<<'\n';
}
return 0;
}