-4
void webparser()
{
    stringstream ss;
    ss << "lynx -dump 'http://somesite.com/q?s=" << currency << "=X' > file.txt";
    system(ss.str().c_str());
}

如果我想将 GBPUSD 用作 char chArray[],我如何将例如“GBPUSD”传递给 webparser;然后在我的情况下将传递的值分配为可变货币

谢谢,不需要退货。

4

1 回答 1

2
void webparser(const std::string& currency) {
  stringstream ss;
  ss << "lynx -dump 'http://somesite.com/q?s=" << currency << "=X' > file.txt";
  system(ss.str().c_str());
}

调用函数:

webparser("Hello, World!");
于 2012-07-25T05:58:02.153 回答