www.bilisim-egitim.tr.gg |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Yinelemeli yazı-tura atışı simülasyonu yapan program
#include <stdio.h> /* printf,scanf */
#include <stdlib.h> /* EXIT_SUCCESS,srand,rand,RAND_MAX */
#include <time.h> /* time */
int main(void)
{
int count, i;
float number;
int heads = 0, tails = 0;
printf("Kaç kez atılacak? "); scanf("%d", &count);
srand(time(NULL));
for (i = 1; i <= count; i++)
{
number = (float) rand() / RAND_MAX;
if (number < 0.5)
{
heads++;
}
else
{
tails++;
}
}
printf("Yazı sayısı: %dn", tails);
printf("Tura sayısı: %dn", heads);
return EXIT_SUCCESS;
/*www.bilisim-egitim.tr.gg*/
}
|
|
|
|
|
|
|
Bugün 145 ziyaretçi (228 klik)
www.bilisim-egitim.tr.gg
|
|
|
|
|
|
|
|