44 views
#include <stdio.h>
#include <stdlib.h>
#include <time.h> // για την (time(NULL))
int main ()
{ system ("chcp 1253 > nul");
int die;
srand(time(NULL)); //srand(time(0))
die = 1 + rand()%6;
printf("Το ζάρι έφερε %d.\n", die);
system("PAUSE");
return 0;
}