#include using namespace std; int main() { int toss; int one, two, three, four, five, six; one = two = three = four = five = six = 0; srand(time(0)); for (int i = 0; i < 100; i++) { toss = rand() %6+1; switch (toss) { case 1 : one++;break; case 2 : two++;break; case 3 : three++;break; case 4 : four++;break; case 5 : five++;break; case 6 : six++;break; }//switch } cout <<"one = " << one <