1 Star 0 Fork 0

丁旭升/cpp代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
两道编程题 (4).txt 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
丁旭升 提交于 2022-10-15 13:27 . 计算糖果 && 进制转换
https://www.nowcoder.com/practice/02d8d42b197646a5bbd0a98785bb3a34?tpId=85&&tqId=29857&rp=1&ru=/activity/oj&qru=/ta/2017test/question-ranking
#include <iostream>
using namespace std;
int main()
{
int a, b, c, d;
cin>>a>>b>>c>>d;
int A=(a+c)/2;
int B1=(b+d)/2;
int C=(d-b)/2;
int B2=(c-a)/2;
if(B1!=B2)
cout<<"No"<<endl;
else
cout<<A<<' '<<B1<<' '<<C<<endl;
return 0;
}
https://www.nowcoder.com/practice/ac61207721a34b74b06597fe6eb67c52?tpId=85&&tqId=29862&rp=1&ru=/activity/oj&qru=/ta/2017test/question-ranking
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
char point[]="0123456789ABCDEF";
int main()
{
int m,n;
cin>>m>>n;
char flag='+'; //标记正负
if(m==0)
{
cout<<m<<endl;
}
if(m<0)
{
flag='-';
m=-m;
}
string s; //存
while(m)
{
int tmp = m%n;
s+=point[tmp];
m/=n;
}
if(flag=='-')
cout<<'-';
reverse(s.begin(), s.end());
cout<<s<<endl;
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/ding-xushengyun/code.git
[email protected]:ding-xushengyun/code.git
ding-xushengyun
code
cpp代码
master

搜索帮助