finished hw7
This commit is contained in:
11
quiz5take2/main.cpp
Normal file
11
quiz5take2/main.cpp
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user