Project: Number-Based Response
Ask the user for their favorite number. If it’s 7, print ‘‘Lucky!’’ If it’s even, print ‘‘Even number.’’ Otherwise, print ‘‘Interesting choice!’’
Project: Number-Based Response
Ask the user for their favorite number. If it’s 7, print ‘‘Lucky!’’ If it’s even, print ‘‘Even number.’’ Otherwise, print ‘‘Interesting choice!’’
#include <iostream>
using namespace std;
int main() {
// Your code goes here
return 0;
}Take user input and make some decisions