题解 | #质数因子#

质数因子

http://www.nowcoder.com/practice/196534628ca6490ebce2e336b47b3607

include

include

include

include

include

include <math.h>

using namespace std;
int main()
{
long input;
cin >> input;
vector<string> ret;
long tmp = 2;
string str = "";
while (input != 1)
{
if (input % tmp == 0)
{
input /= tmp;
str = to_string(tmp) + " ";
ret.push_back(str);
tmp = 2;
}
else
{
if(tmp>1000)
{
str = to_string(input) + " ";
ret.push_back(str);
break;
}
++tmp;
}
}
for (int i = 0; i < ret.size(); ++i)
{
cout << ret[i];
}
return 0;
}</string>

全部评论

相关推荐

11-15 18:39
已编辑
西安交通大学 Java
全村最靓的仔仔:卧槽,佬啥bg呢,本也是西交么
点赞 评论 收藏
分享
牛舌:如果我不想去,不管对方给了多少,我一般都会说你们给得太低了。这样他们就会给下一个offer的人更高的薪资了。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务