新微赢技术网

标题: 求助,编译没问题,运行时打印 已放弃 [打印本页]

作者: 欧阳天明    时间: 2009-11-4 02:07
标题: 求助,编译没问题,运行时打印 已放弃
想在 大写字母前加一个空格(除第一个大写字母)

#include<iostream>
#include<string>
using namespace std;
int main(void)
{
        int flag = 0;
        string str("XiaoYaoKe");
        string::iterator ite = str.begin();
        while(ite != str.end())
        {
                if(isupper(*ite))
                {
                        if(!flag)    //第一个大写字母不作处理
                                flag = 1;
                        else
                                str.insert(ite, ' ');




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