55分求条
查看原帖
55分求条
884813
_luogu_huowenshuo_楼主2024/12/14 20:59
#include<bits/stdc++.h>
using namespace std;
int main() 
{
	int n;
	cin >> n;
    for (int i = 1; i <= n; i++) {
    int x;
    cin >> x;
    if(x%11==0)
    	cout << "Yes\n";
    else
        cout << "No\n";
}
    return 0;
}
2024/12/14 20:59
加载中...