我是靠谱客的博主 坚定哈密瓜,最近开发中收集的这篇文章主要介绍C++ primer ——3.2.3节,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

//3.6
#include<iostream>
#include<string>
#include<cctype>
using std::string;
using std::cout;

int main()
{
    string s("hello");
    for (int index = 0; index < s.size(); index++)
        s[index] = 'T';
    cout << s;
    return 0;
}
//3.10
#include<iostream>
#include<string>
using std::cout;
using std::string;
using std::endl;
int main()
{
    string s("hello,world !");
    for (string::size_type index = 0; index < s.size(); index++)
    {
        if (ispunct(s[index]))
        {
            string::size_type n = index;
            for (; n < s.size() - 1;n++)
                s[n] = s[n + 1];

        }

        cout << s[index] << endl;

    }
    cout << s;
    return 0;
}//用数组存在BUG如何解决
#include<iostream>
#include<string>
using std::cout;
using std::string;

int main()
{
    string s("hello,world!");
    for (auto c : s)
    {
        if (!ispunct(c))
        {
            cout << c;
        }
    }
    return 0;
}

最后

以上就是坚定哈密瓜为你收集整理的C++ primer ——3.2.3节的全部内容,希望文章能够帮你解决C++ primer ——3.2.3节所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部