#include using namespace std; #include "dice.h" // simple program illustrating use of Dice class // roll two dice, print results, Owen Astrachan, 3/31/99 int main() { //Dice test; Dice cube(6); // six-sided die Dice dodeca(12); // twelve-sided die cout << "rolling " << cube.NumSides() << " sided die" << endl; cout << cube.Roll() << endl; cout << cube.Roll() << endl; cout << "rolled " << cube.NumRolls() << " times" << endl <