#include #include #include void line(int length); int throw(void); int main() { int dice,x,roll; int total = 0; /* seed randomizer */ srand((unsigned)time(NULL)); /* Game title and prompt */ puts("R O L L ' E M !"); do { printf("How many dice would you like to roll (1 to 12)? "); scanf("%i",&dice); } while(dice < 1 || dice > 12); printf("Rolling %d...\nHere they come!\n",dice); /* process / display */ for(x=0;x