Floyd Üçgeni

Bu program girilen bir satır sayısı değerine göre Floyd Üçgeni oluşturmaktadır 







Kod:

#include <stdio.h>

int main() {
    int a,b,c,sayi=1;
   
    printf("satir sayisini giriniz");
    scanf("%d",&c);
   
    for (a=1;a<=c;a++){
        for (b=1;b<=a;b++){
            printf("%d ",sayi);
            sayi++;
        }
        printf("\n");
    }
    system("PAUSE");
    return 0;
}
          
Çıktısı :
 


Comments

Popular posts from this blog