1 条题解
-
112203沈宇阳 (12203沈宇阳) LV 8 @ 2022-07-28 19:07:32
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n,cnt=0;
cin>>n;
for(int i=2;i<=n/2;i++)
{
for(int j=1;j<i;j++)
{
if(i%j==0)
cnt++;
}
for(int j=1;j<n-i;j++)
{
if((n-i)%j==0)
cnt++;
}
if(cnt==2)
cout<<i<<"+"<<n-i<<"="<<n<<endl;
cnt=0;
}
return 0;
}
- 1
信息
- ID
- 1633
- 难度
- 3
- 分类
- (无)
- 标签
- 递交数
- 96
- 已通过
- 45
- 通过率
- 47%
- 上传者