我是靠谱客的博主 雪白大米,最近开发中收集的这篇文章主要介绍string 字符串首字母转换为大写&&数组基本操作,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include <iostream>//IO输入输出流相关
#include <string>//C++
#include <cstring>//C
#include <cstddef>//size_t
#include <vector>//内置模版容器
using namespace std;//命名空间
int main()
{
string s("John_Tian 2013.9.3");
cout<<s<<endl;//输出原始字符串
string::iterator it=s.begin();
//convert first word in s to uppercase
while (it!=s.end()&&!isspace(*it))//isspace()判断是否为空格
{
*it=toupper(*it);//toupper把对应字母变换为大写
++it;
}
cout<<s<<endl;//输出首写字母转换后字符串
const size_t array_size=5;//数组大小常量,类型为const size_t
int a[array_size]={0,1,2,3,4};
for (size_t ix=0;ix!=array_size;++ix)//前置++
{
cout<<a[ix]<<endl;
}
cout<<"①"<<endl;
for (size_t iy=0;iy!=array_size;iy++)//后置++
{
cout<<a[iy]<<endl;
}
cout<<"②"<<endl;
return 0;
}

最后

以上就是雪白大米为你收集整理的string 字符串首字母转换为大写&&数组基本操作的全部内容,希望文章能够帮你解决string 字符串首字母转换为大写&&数组基本操作所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部