// Dice checker program, which checks whether the sum of the dice // is equal to the target number. You win the game if it is. // Sasha Vassar, Week 2 Lecture 3 #include // Problem: A user rolls two dice and tell us the number on each of // the rolled die. Our program will add the die numbers together and // check them against a target number that only the program knows. // It will then report back whether the total of the dice was higher, // equal or lower than the secret number. int main (void) { return 0; }