1 Star 0 Fork 0

丁旭升/cpp代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
两道编程题 (12).txt 1019 Bytes
一键复制 编辑 原始数据 按行查看 历史
丁旭升 提交于 2022-10-25 20:18 . 参数解析 && 跳石板
https://www.nowcoder.com/practice/30c1674ad5694b3f8f0bc2de6f005490?tpId=8&&tqId=11019&rp=1&ru=/activity/oj&qru=/ta/cracking-the-coding-interview/question-ranking
class BinInsert {
public:
int binInsert(int n, int m, int j, int i) {
// write code here
m<<=j;
return n|=m;
}
};
https://www.nowcoder.com/practice/f8538f9ae3f1484fb137789dec6eedb9?tpId=37&&tqId=21283&rp=1&ru=/activity/oj&qru=/ta/huawei/question-ranking
#include <iostream>
#include <math.h>
using namespace std;
bool PriNum(int num)
{
for(int i=2; i<=sqrt(num); i++)
{
if(num%i==0)
{
return false;
}
}
return true;
}
int main()
{
int n=0;
cin>>n;
int mid=0, min=0, max=0;
mid=n/2; //从中间向两边找
for(int i=mid; i>1; i--)//一不是素数
{
if(PriNum(i) && PriNum(n-i))
{
min=i;
max=n-i;
break;
}
}
cout<<min<<endl;
cout<<max<<endl;
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/ding-xushengyun/code.git
[email protected]:ding-xushengyun/code.git
ding-xushengyun
code
cpp代码
master

搜索帮助