gpt4 book ai didi

c++ - C++中的字符串连接问题

转载 作者:行者123 更新时间:2023-11-30 00:58:21 25 4
gpt4 key购买 nike

我对 C++ 中的字符串连接有疑问,这是我的代码

map<double, string> fracs;
for(int d=1; d<=N; d++)
for(int n=0; n<=d; n++)
if(gcd(n, d)==1){
string s = n+"/"+d;// this does not work in C++ but works in Java
fracs.insert(make_pair((double)(n/d), s));
}

如何修复我的代码?

最佳答案

像这样尝试。

stringstream os;
os << n << "/" << d;
string s =os.str();

关于c++ - C++中的字符串连接问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6368377/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com