在C ++ 14语言中,我收到“或'to'令牌之前的预期的不合格ID”错误。我的代码如下:
#include<iostream>
using namespace std;
int main()
{
int s, t, a, b, m, n, count1 = 0, count2 = 0, i;
int ap[100], or[100], ap1[100], or1[100];
cin >> s >> t;
cin >> a >> b;
cin >> m >> n;
for (i = 1; i <= m; i++)
cin >> ap[i];
for (i = 1; i <= n; i++)
cin >> or[i];
for (i = 1; i <= m; i++)
ap1[i] = ap[i] + a;
for (i = 1; i <= n; i++)
or1[i] = or[i] + b;
for (i = 1; i <= m; i++)
if ((ap1[i] >= 7) && (ap1[i] <= 10))
count1++;
for (i = 1; i <= n; i++)
if ((or1[i] >= 7) && (or1[i] <= 10))
count2++;
cout << count1 << endl;
cout << count2 << endl;
return 0;
}
答案 0 :(得分:2)
问题在于,“或”是alternative operator
中的C++
。
参见:https://en.cppreference.com/w/cpp/language/operator_alternative
使用简单的程序,您可能会观察到相同的错误:
int main() {
int or;
}
总而言之,请勿尝试使用and
,or
,not
等关键字作为标识符。 (请参阅链接中的完整列表。)