100% c prog patterns using for loops
// program to print patterns using for loops
#include <stdio.h>
void main()
{
int i,j;
for(i=1;i<=4;i++)
{
for(j=1;j<=i;j++)
{
printf("%2d",j);
}
printf("\n");
}
}
ఔట్పుట్ తెర
4 4
3 3 3
2 2 2 2
1 1 1 1 1
#include <stdio.h>
void main()
{
int i,j;
for(i=1;i<=4;i++)
{
for(j=1;j<=i;j++)
{
printf("%2d",j);
}
printf("\n");
}
}
ఔట్పుట్ తెర
1
1 2
1 2 3
1 2 3 4
1 2
1 2 3
1 2 3 4
----------------------------------
// program to print patterns usinf for loops
#include <stdio.h>
void main()
{
int i,j,n;
printf("\nenter no of rows:");
scanf("%d",&n);
for(i=n;i>=1;i=i-1)
{
for(j=1;j<=i;j++)
{
printf("%2d",j);
}
printf("\n");
}
}
ఔట్పుట్ తెర
#include <stdio.h>
void main()
{
int i,j,n;
printf("\nenter no of rows:");
scanf("%d",&n);
for(i=n;i>=1;i=i-1)
{
for(j=1;j<=i;j++)
{
printf("%2d",j);
}
printf("\n");
}
}
ఔట్పుట్ తెర
enter no of rows:5
1 2 3 4 5
1 2 3 4
1 2 3
1 2
1
1 2 3 4 5
1 2 3 4
1 2 3
1 2
1
-------------
#include <stdio.h>
void main()
{
int i,j,n;
printf("\nenter no of rows:");
scanf("%d",&n);
for(i=n;i>=1;i=i-1)
{
for(j=i;j<=n;j++)
{
printf("%2d",i);
}
printf("\n");
}
}
void main()
{
int i,j,n;
printf("\nenter no of rows:");
scanf("%d",&n);
for(i=n;i>=1;i=i-1)
{
for(j=i;j<=n;j++)
{
printf("%2d",i);
}
printf("\n");
}
}
ఔట్పుట్ తెర
enter no of rows:5
5enter no of rows:5
4 4
3 3 3
2 2 2 2
1 1 1 1 1
కామెంట్లు
కామెంట్ను పోస్ట్ చేయండి
దయచేసి మీ సలహాలను సూచనలను స్పష్టంగా పేర్కొనగలరు. plz see that ur comments are 'acceptable' in a value based society.