8 条题解
-
3陈梓豪 (陈梓豪1) LV 7 @ 2024-08-09 08:07:38
#include<bits/stdc++.h>
using namespace std;
int main( )
{
int n,f;
cin>>n;
while(n>0)
{
f=1;
for(int j=2;j*j<=n;j++)
if(n%j==0)
{
f=0;
break;
}
if(f==0||n==1)break;
n/=10;
}
if(n>0)
cout<<"No"<<endl;
else
cout<<"Yes"<<endl;
return 0;
} -
32024-08-09 08:07:06@
#include<iostream>
using namespace std;
int main( )
{
int n,f;
cin>>n;
while(n>0)
{
f=1;
for(int i=2;i*i<=n;i++)
if(n%i==0)
{
f=0;
break;
}
if(f==0||n==1)break;
n/=10;
}
if(n>0)cout<<"No"<<endl;
else cout<<"Yes"<<endl;
return 0;
} -
12024-08-15 18:47:07@
#include<bits/stdc++.h>
using namespace std;
int main()
{
string s;
cin>>s;
int l=s.size(),cnt=0;
for(int i=0;i<s.size()/2+1;i++)
{
l--;
if(s[i]==s[l])
cnt++;
}
if(cnt==s.size()/2+1)
cout<<"Yes";
else
cout<<"No";
return 0;
} -
12024-08-09 08:06:52@
#include<bits/stdc++.h>
using namespace std;
int main( )
{
int n,f;
cin>>n;
while(n>0)
{
f=1;
for(int j=2;j*j<=n;j++)
if(n%j==0)
{
f=0;
break;
}
if(f==0||n==1)break;
n/=10;
}
if(n>0)
cout<<"No"<<endl;
else
cout<<"Yes"<<endl;
return 0;
} -
12022-08-19 19:30:16@
#include<bits/stdc++.h> using namespace std; int main() { string s; cin>>s; int l=s.size(),cnt=0; for(int i=0;i<s.size()/2+1;i++) { l--; if(s[i]==s[l]) cnt++; } if(cnt==s.size()/2+1) cout<<"Yes"; else cout<<"No"; return 0; } //我是小牛逼,越来越牛逼!
-
02024-08-19 19:32:10@
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
if(n%4==0&&n%100!=0||n%400==0)
cout<<"Y";
else
cout<<"N";
return 0;
} -
02024-08-09 08:08:14@
#include<bits/stdc++.h>
using namespace std;
int main( )
{
int n,f;
cin>>n;
while(n>0)
{
f=1;
for(int j=2;j*j<=n;j++)
if(n%j==0)
{
f=0;
break;
}
if(f==0||n==1)break;
n/=10;
}
if(n>0)
cout<<"No"<<endl;
else
cout<<"Yes"<<endl;
return 0;
} -
02021-12-27 20:08:28@
#include<iostream> using namespace std; int main( ) { int n,f;//2333 233 23 2 cin>>n; while(n>0) { f=1; for(int j=2;j*j<=n;j++) if(n%j==0) { f=0; break; } if(f==0||n==1)break; n/=10; } if(n>0)cout<<"No"<<endl; else cout<<"Yes"<<endl; return 0; }
- 1
信息
- ID
- 1636
- 难度
- 7
- 分类
- (无)
- 标签
- 递交数
- 274
- 已通过
- 62
- 通过率
- 23%
- 上传者