首先,OJ题多行输入输出不需要你把全部结果求出再输出,可以一组输入立即接一组输出。另外,题目要输出的是"False"而不是"false"
#include
using namespace std;
int main()
{
int n;
int x, y;
cin >> n;
while( n-- )
{
cin >> x >> y;
if( x>=10 || y>=20 )
cout << "True" << endl;
else
cout << "False" << endl;
}
return 0;
}
int m[g],这个你能过