From: | What's this button do? <GRAFF85@********.CORTLAND.EDU> |
---|---|
Subject: | My gift to a great list |
Date: | Mon, 21 Mar 1994 14:50:11 -0400 |
would pass it on to you...I was rather proud of it....rolls six siders..
--Dave
--------%X----Cut-Here-----%X-----------
/* Random dice generator written in ANSI C*/
/* Written by Dave Graff: Phlatline */
#include <stdlib.h>
#include <time.h>
#include <stdio.h>
main()
{
int a, num;
srand((unsigned) time((time_t*)NULL));
rand();
printf("How many dice do you want?\n");
scanf("%d", &num);
while(num != 0)
{
num -= 1;
a= 1 + rand() % 6;
printf("Die Role = %d\n",a);
}
}