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.

22 lines
461 B
C

5 years ago
/*Floyd's triangle
Floyd's triangle is a right angled-triangle using the natural numbers. Examples of Floyds triangle:
Example
1
2 3
4 5 6
7 8 9 10
*/
#include<stdio.h>
void 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");
}
}