summaryrefslogtreecommitdiff
path: root/9p15.cpp
diff options
context:
space:
mode:
Diffstat (limited to '9p15.cpp')
-rw-r--r--9p15.cpp41
1 files changed, 41 insertions, 0 deletions
diff --git a/9p15.cpp b/9p15.cpp
new file mode 100644
index 0000000..1a150b0
--- /dev/null
+++ b/9p15.cpp
@@ -0,0 +1,41 @@
+#include <iostream>
+#include <vector>
+#include <limits>
+/*
+ *
+ * 9.15
+ *
+ *
+ */
+
+int main () {
+
+ std::vector<int> v1;
+ std::vector<int> v2;
+ int in = 0;
+ std::cout << "v1" << std::endl;
+ for(int i = 0 ; i < 10 ; ++i) {
+ if(std::cin >> in) {} else {
+ std::cout << "Error: Wrong input." << std::endl;
+ return -1;
+ }
+
+ v1.push_back(in);
+ }
+
+ std::cout << "v2" << std::endl;
+ for(int i = 0 ; i < 10 ; ++i) {
+ if(std::cin >> in) {} else {
+ std::cout << "Error: Wrong input." << std::endl;
+ return -1;
+ }
+
+ v2.push_back(in);
+ }
+
+ if(v1 == v2) {
+ std::cout << "equal!" << std::endl;
+ }
+
+ return 0;
+}