90. Pattern
#include<stdio.h>
void
main()
{
int i,j,n;
scanf("%d",&n);
for(i=0;i<n;i++)
{
for(j=0;j<n-1;j++)
{
printf("* ");
}
printf("\n");
}
}
Comments
Post a Comment