#include
#include
using namespace std;
string replace(string str)
{
const char *str1=str.data();
string temp;
int nr=str.size();
int i=0;
while(nr)
{
if(str[i]!=' ')
{
temp+=str[i];
}
else
{
temp+="%20";
}
nr--;
i++;
}
return temp;
}
int main() {
string str = "we are young!";
string result;
//getline(cin,str);
cout
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
相关推荐: .NET周报 【6月第1期 2023-06-04】
专题 – NanoFramework项目案例 如果有时间,我会在周报中加入一些专题和项目案例的分享,本周就是讨论.NET NanoFramework项目案例的专题,在讨论 NanoFramework 的典型案例之前,让我们先回顾一下 .NET 在嵌入式领域的历…