find函数直接可以判定
2024-10-25 20:41:04
发布于:广东
7阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
long long x;
cin >> x;
if (x-x/12*12==0 || to_string(x).find("12")!=string::npos)
cout << "YE5";
else
cout << "N0";
return 0;
}
这里空空如也
有帮助,赞一个