1 Star 0 Fork 0

丁旭升/cpp代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
23.5.31.txt 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
丁旭升 提交于 2023-05-31 03:22 . 最难的问题 && 因子个数
https://www.nowcoder.com/questionTerminal/9f6b8f6ec26d44cfb8fc8c664b0edb6b
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s;
while(getline(cin, s))
{
for(char& ch:s)
{
if(ch==' ') continue;
ch-=5;
if(ch<'A')
{
ch+=26;
}
}
for(char ch:s)
{
cout << ch;
}
cout << endl;
}
return 0;
}
https://www.nowcoder.com/questionTerminal/e8fb8f89f5d147ec92fd8ecfefe89b0d
#include <iostream>
#include <cmath>
using namespace std;
int FidCount(int n)
{
int count=0;
int num = sqrt(n);
for(int i=2; i<=num; ++i)
{
int tmp=0;
while(n%i==0)
{
n/=i;
tmp=1;
}
count+=tmp;
}
if(n!=1) ++count;
return count;
}
int main() {
int n;
while (cin >> n) {
cout << FidCount(n) <<endl;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/ding-xushengyun/code.git
[email protected]:ding-xushengyun/code.git
ding-xushengyun
code
cpp代码
master

搜索帮助