Project: Play with Randomness

Make a program that randomly chooses one of three compliments:

  • ‘‘You’re awesome!’’

  • ‘‘Keep going!’’

  • ‘‘Code like a boss!’’

Project: Play with Randomness

Make a program that randomly chooses one of three compliments:

  • ‘‘You’re awesome!’’

  • ‘‘Keep going!’’

  • ‘‘Code like a boss!’’

C++
#include <iostream>
// Include headers for random number generation
using namespace std;
int main() {
// Your code goes here
return 0;
}