You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
326 B
C

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(int argc, char **argv)
{
printf("Enter the number of dice: ");
int n, i;
scanf("%d", &n);
printf("The values on dice are: ( ");
for (i = 0; i < n; i++)
printf("%d ", (rand() % 6) + 1);
printf(")");
return 0;
}