
本题思路:本题就是语法题
- #include
-
- int main()
- {
- std::ios::sync_with_stdio(false);
- std::cin.tie(nullptr);std::cout.tie(nullptr);
-
- std::string str;
- std::getline(std::cin,str);
-
- for(int i=0;i
size();i++){ - if(str[i]==' ') std::cout<<' ';//当前是空格跳过
- else if(i==0) std::cout<<char(std::toupper(str[i]));//对第一个字符进行特殊处理
- else if(str[i-1]==' ') std::cout<<char(std::toupper(str[i]));//如果前面一个字符是空格的话,那么说明该字符是一个单词,那么首字母需要进行大写处理
- else std::cout<
- }
-
- return 0;
- }
-
二、字符串转换整数IO链接
本题思路: 本题是一道语法题。
- #include
-
- typedef int64_t i64;
-
- int main()
- {
- std::ios::sync_with_stdio(false);
- std::cin.tie(nullptr);std::cout.tie(nullptr);
-
- std::string s;
- std::cin>>s;
-
- bool flag=false;//用来判断当前数字的出现
- i64 res=0;
- for(auto& ch: s){
- if(isdigit(ch)){
- res=res*10+ch-'0';
- if(!flag) flag=true;
- }
- else if(flag) break;//如果当前是字母就说明第一个数字可能已经产生
- }
-
- if(res>INT_MAX||!flag) std::cout<<-1<
//超过int范围返回-1 - else std::cout<
- return 0;
- }
-
相关阅读:
Vue3中的常用组件通信大总结 包括最Vue3.4defineModel()实现组件双向绑定
C语言-流程控制
Lumiprobe ProteOrange 蛋白质凝胶染料说明书
利用python数据分析——Numpy基础:通用函数、利用数组进行数据处理
Odoo:全球排名第一的免费开源PLM管理系统介绍
Java 类加载的过程
MySQL数据库不会安装?看过来,保姆级安装详细教程来啦(图文结合,含安装包,包教包会)以及开启与关闭MySQL服务
LRU机制实现
【算法刷题】—7.13哈希表的应用
【场外衍生品系列】雪球结构定价研究
-
原文地址:https://blog.csdn.net/qq_67458830/article/details/132725097