finished hw7

This commit is contained in:
2019-11-18 16:34:57 -07:00
parent f47f079bdc
commit 336746c138
514 changed files with 38393 additions and 2 deletions

11
quiz5take2/main.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include <iostream>
int main() {
int count = 0;
std::cin >> count;
std::vector<int> tmp;
for(int i = 0; i < count; i++){
std::cin >> tmp;
}
return 0
}