在第 15 行出现错误“预期表达式”。不知道它需要什么以及如何解决它。
#include <iostream>
#include <vector>
#include <string>
#include <set>
using namespace std;
int main() {
int q;
cin >> q;
string command, task;
int day;
int index = 1;
vector<int> m_Lenght;
m_Lenght = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, 31}; //<-- Here in line 15
return 0;
}