...

/

Project: Print Favorite Numbers

Project: Print Favorite Numbers

Use an array and a loop to show your three favorite numbers.

We'll cover the following...

Mini project

Make an array of your three favorite numbers. Use a loop to print each one.

Press + to interact
C++
#include <iostream>
using namespace std;
int main() {
// Your code goes here
return 0;
}
...