You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
412 B
C

#include<stdio.h>
void main()
{
int i,j,k;
for(i=1; i<=5; i++)
{
if(i%2==0)
{
k=2;
}
else
{
k=1;
}
for(j=1; j<=i; j++,k+=2)
{
printf("%d ", k);
}
printf("\n");
}
}