please solve this pattern best answer wiuld be mark as BRAINLIEST
Attachments:
Answers
Answered by
0
Answer
#include<iostream.h>
#include<conio.h>
void main()
{ clrscr();
int n, c, k, space=1;
cout<<"Enter number of rows (for diamond dimension) : ";
cin>>n;
space=n-1;
for (k=1; k<=n; k++)
{ for(c=1; c<=space; c++)
{
cout<<c;
}
space--;
for(c=1; c<=(2*k-1); c++)
{
cout<<c;
}
cout<<"\n";
}
space=1;
for(k=1; k<=(n-1); k++)
{
for(c=1; c<=space; c++)
{
cout<<" ";
}
space++;
for(c=1 ; c<=(2*(n-k)-1); c++)
{
cout<<c;
}
cout<<"\n";
}
getch();
}
#include<iostream.h>
#include<conio.h>
void main()
{ clrscr();
int n, c, k, space=1;
cout<<"Enter number of rows (for diamond dimension) : ";
cin>>n;
space=n-1;
for (k=1; k<=n; k++)
{ for(c=1; c<=space; c++)
{
cout<<c;
}
space--;
for(c=1; c<=(2*k-1); c++)
{
cout<<c;
}
cout<<"\n";
}
space=1;
for(k=1; k<=(n-1); k++)
{
for(c=1; c<=space; c++)
{
cout<<" ";
}
space++;
for(c=1 ; c<=(2*(n-k)-1); c++)
{
cout<<c;
}
cout<<"\n";
}
getch();
}
Similar questions