博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
709. To Lower Case
阅读量:6237 次
发布时间:2019-06-22

本文共 510 字,大约阅读时间需要 1 分钟。

题目描述

Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase.

 

Example 1:

Input: "Hello"Output: "hello"

Example 2:

Input: "here"Output: "here"

Example 3:

Input: "LOVELY" Output: "lovely" 解题思路: 还是直接看代码。 代码:
1 char* toLowerCase(char* str) {2     for (int i = 0; str[i] != '\0'; ++i) {3         if (str[i] >= 'A' && str[i] <= 'Z') {4             str[i] = str[i] - ('A' - 'a');5         }6     }7     return str;8 }

 

 

转载于:https://www.cnblogs.com/gsz-/p/9380620.html

你可能感兴趣的文章
nfs服务的配置
查看>>
微信小程序支付调试
查看>>
ASP.NET中GridView数据导出到Excel
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
swoole项目思维转换 -- 前篇
查看>>
我的友情链接
查看>>
Redis之----Redis的数据类型和操作
查看>>
只读字段与标签字段
查看>>
ubuntu修改时区和时间的方法
查看>>
maven实战 读书笔记三#高级程序员进阶之路#
查看>>
硬盘安装windows 7
查看>>
编译器编译原理--详解
查看>>
第五章 择偶
查看>>
用Fiddler模拟低速网络环境
查看>>
《跟阿铭学Linux》第8章 文档的压缩与打包:课后习题与答案
查看>>
Python练习2
查看>>
新安装的python2.7无法加载error while loading shared libraries: libpython2.7.so.1.0
查看>>
js反混淆解密
查看>>
Exchange Server 2010 DAG搭建及灾难恢复部署方案(准备环境)
查看>>