cpp11/loops.cc

22 lines
318 B
C++

#include <string>
#include <vector>
#include <iostream>
using namespace std;
const vector<string> mcquays = {
"stephen",
"michael",
"bryan",
"derek",
};
// const vector<int> nums = { 1, 2, 3, 4, 5 };
int main() {
// iterate over mcquay boys
// iterate over nums
// correct numbers
}