Project: Loop It Up

Mini project

Use a loop to print:

  • ‘‘Looping!’’ five times

  • All even numbers from 0 to 10

Project: Loop It Up

Mini project

Use a loop to print:

  • ‘‘Looping!’’ five times

  • All even numbers from 0 to 10

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