cpp11/loops.cc

22 lines
318 B
C++
Raw Normal View History

2012-05-05 12:45:44 -07:00
#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
}