Floyeds triangle
#include<stdio.h>
int main(){
int i,j,r,k=1;
printf("Enter
the range: ");
scanf("%d",&r);
printf("FLOYD'S
TRIANGLE\n\n");
for(i=1;i<=r;i++){
for(j=1;j<=i;j++,k++)
printf(" %d",k);
printf("\n");
}
return 0;
}
Floyeds teriangle 2
#include <stdio.h>
#include<conio.h>
void main()
{
int n, i, c, a = 1;
printf("Enter the number of rows of Floyd's triangle to
print\n");
scanf("%d", &n);
for (i = 1; i <= n; i++)
{
for (c = 1; c <= i; c++)
{
printf("%d ",a);
a++;
}
printf("\n");
}
}
0 comments:
Post a Comment