13579
3579
579
79
9
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
for(i=1;i<=9;i+=2)
{
for(j=i;j<=9;j+=2)
{
printf("%d",j);
}
printf("\n");
}
getch();
}
13579
3579
579
79
9
Copyright (c) 2022 Learn Coding All Right Reseved
0 Comments