C-Mod operatörü kullanarak 100 yıldız yazdırma programı Deitel 3.38

Konu sahibi son olarak 3309 gün önce görüldü
Kod:
#include <stdio.h>
#include <conio.h>
int main()
{
    int counter = 1;
    while (counter <= 100) {
    printf("*");
    if (counter % 10 == 0)
        printf("\n");
    counter++;
    }
getch();
    return 0;
}
 
Geri