Task: | Aita |
Sender: | |
Submission time: | 2015-07-18 16:54:33 +0300 |
Language: | C++ |
Status: | COMPILE ERROR |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:29:9: error: expected ';' before '}' token } else { ^
Code
#include <iostream>#include <stdlib.h>#include <vector>#include <algorithm>#include <string>using namespace std;int main() {int n, k;cin >> n >> k;vector<int> aita;for (int i = 1; i < n + 1; i+= 2) {aita.push_back(i);}for (int i = 2; i < n + 1; i+= 2) {aita.push_back(i);}if (n != 2) {string test ="";for (int i = 0; i < n; i++) {test += aita.at(i);}cout << test} else {cout << "QAQ";}}