日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

PrimerCH3字符串,向量,迭代器,数组

發(fā)布時(shí)間:2023/12/20 编程问答 19 豆豆
生活随笔 收集整理的這篇文章主要介紹了 PrimerCH3字符串,向量,迭代器,数组 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

#include<iostream> #include<string> #include<vector>using std::cin; using std::cout; using std::endl; using std::string; using std::vector; int main() {//****************Program3.2//讀取行//string line;//while (getline(cin, line)){// cout << line << std::endl;//}//讀取詞//string word;//while (cin >> word) {// cout << word << std::endl;//}//****************Program3.4//字符串比較//string s1;//string s2;//cin >> s1;//cin >> s2;//if (s1 > s2)// cout << s1 << endl;//else// cout << s2 << endl;//**************Program3.5//string s1;//string s2;//cin >> s1;//cin >> s2;//cout << s1 + " " + s2 << endl;//***************Program3.8//const string s1("test program 3.8");getline(cin, s1);//for (auto& c : s1) {// cout << c << endl;// //c = 'X';//}//for (auto d : s1) {// cout << d << endl;//}//***********Program3.10//string s1("test program3.10");//for (decltype(s1.size()) index = 0; index <= s1.size(); index++)//{// if (s1[index] == '.') {// for (decltype(s1.size()) indexd = index; indexd < s1.size(); indexd++) {// s1[indexd] = s1[indexd + 1];// }// }//}//for (auto c : s1) {// cout << c << endl;//}//*****************program 3.14//vector<int> Vint;//int Cint;//while (cin >> Cint) //{// Vint.push_back(Cint);//}//vector<string> Vstring;//string Cstring;//while (cin >> Cstring) {// Vstring.push_back(Cstring);//}//*********************program3.17//vector<string> Vstring;// string Cstring;控制臺(tái)輸入字符//while (cin >> Cstring) {// Vstring.push_back(Cstring);//}大寫轉(zhuǎn)換//for (decltype(Vstring.size()) index = 0; index < Vstring.size(); index++){// string lowToTopString = Vstring[index];// //toupper函數(shù)需要對(duì)字符操作// for (auto& c : lowToTopString)// {// c = toupper(c);// }// Vstring[index] = lowToTopString;//}輸出轉(zhuǎn)換結(jié)果//for (decltype(Vstring.size()) index = 0; index < Vstring.size(); index++)//{// cout << Vstring[index] << endl;//}//**********************Program3.21//vector<string> Vstring;//string Cstring;控制臺(tái)輸入字符//while (cin >> Cstring) {// Vstring.push_back(Cstring);//}大寫轉(zhuǎn)換//for (auto it = Vstring.begin(); it != Vstring.end();++it) {// string lowToTopString = *it;// //toupper函數(shù)需要對(duì)字符操作// for (auto itC = lowToTopString.begin();itC != lowToTopString.end();++itC)// {// *itC = toupper(*itC);// }// *it = lowToTopString;//}輸出轉(zhuǎn)換結(jié)果//for (decltype(Vstring.size()) index = 0; index < Vstring.size(); index++)//{// cout << Vstring[index] << endl;//}return 0; }

總結(jié)

以上是生活随笔為你收集整理的PrimerCH3字符串,向量,迭代器,数组的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。