C programlama dili ile pascal üçgeni oluşturma örneği:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #include<stdio.h> int main() { int rows, coef=1, space, i, j; printf("Satır Sayısı Gir: "); scanf("%d", &rows); for (i=0; i<rows; i++) { for (space=1; space <= rows-i; space++) printf(" "); for (j=0; j<=i; j++) { if (j==0 || i==0) coef = 1; else coef=coef*(i-j+1)/j; printf("%4d", coef); } printf("\n"); } return 0; } |
İlginizi Çekebilir: C Dili Örnekleri
Çıktı:
1 2 3 4 5 6 7 8 9 10 | Satır Sayısı Gir: 7 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 1 6 15 20 15 6 1 |
c++ ile sayıyı biz söylemeden * ile pascal üçgeni yazan kodu da gösterirmisiniz