新微赢技术网

标题: 请高手帮个忙,小写改为大写,怎么改不了 [打印本页]

作者: 假tp老tp练    时间: 2009-11-4 02:10
标题: 请高手帮个忙,小写改为大写,怎么改不了
#include<iostream>
#include<string>
#include<cctype>
using namespace std;

string &fun(string &);
int main(void)
{
        string str("xiaoyaoke");
        cout << fun(str) << endl;
        return 0;
}
string &fun(string &s)
{
        string::iterator ite = s.begin();
        while(ite != s.end())
        {
                toupper(*ite++);
        }
        return s;
}




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2