[LeetCode] 520.Detect Capital

来源:互联网 发布:linux 存放.rpm的目录 编辑:程序博客网 时间:2024/06/07 04:49

[LeetCode] 520.Detect Capital

  • 题目描述
  • 解题思路
  • 实验代码

题目描述

Given a word, you need to judge whether the usage of capitals in it is right or not.

We define the usage of capitals in a word to be right when one of the following cases holds:

  1. All letters in this word are capitals, like “USA”.
  2. All letters in this word are not capitals, like “leetcode”.
  3. Only the first letter in this word is capital if it has more than one letter, like “Google”.

Otherwise, we define that this word doesn’t use capitals in a right way.

Example 1:
Input: “USA”
Output: True

Example 2:
Input: “FlaG”
Output: False

Note: The input will be a non-empty word consisting of uppercase and lowercase latin letters.

解题思路

这道题考察的就是ASCII码的问题,大写字母对应的ASCII码为65—90,小写字母对应的ASCII码为97—122。了解了这个以后再按照题目中所给三种情况分别作出相应操作就能完成这道题。

实验代码

class Solution {public:    bool detectCapitalUse(string word) {        int l = word.length();        if (word[0] >= 97 && word[0] <= 122) {            for (int i = 1; i < l; i++)                if (word[i] < 97 || word[i] > 122)                    return false;            return true;        } else if (word[0] >= 65 && word[0] <= 90) {            if (word[1] >= 65 && word[1] <= 90) {                for (int i = 2; i < l; i++)                    if (word[i] < 65 || word[i] > 90)                        return false;                return true;            } else {                for (int i = 1; i < l; i++)                    if (word[i] < 97 || word[i] > 122)                        return false;                return true;            }        } else return false;    }};
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 天猫购物几天不发货怎么办 天猫总是不发货怎么办 申请退款后卖家又发货了怎么办 天猫拍后申请退款卖家发货怎么办 淘宝上没下单却收到了货怎么办 被买家投诉三无产品怎么办 阿里巴巴卖家虚假发货怎么办 淘宝捡到便宜但是卖家不发货怎么办 被工商局查到三无产品怎么办 淘宝买到三无产品电器怎么办 天猫商城被投诉怎么办 床板有虫子咬人怎么办 微信充电话费充错怎么办 联通话费充多了怎么办 qq钱包充值要验证码怎么办 在微信qq币充错账号怎么办 微信qq币充错了怎么办 魅蓝e玩游戏卡怎么办 魅蓝5玩游戏卡怎么办 微信qb充错号了怎么办 支付宝qb充错号了怎么办 手机上q币充错了怎么办 q币数值充错了怎么办 微信充值商户电话是假了怎么办 微信冲话费冲错了怎么办 淘宝退款不退邮费怎么办 淘金币买的退款怎么办 淘宝退款不退运费怎么办 拼多多不退运费怎么办 开发商不退团购服务费怎么办 支付宝话费充错了怎么办 电视版本低不支持投屏怎么办 绝地求生刺激战场不支持机型怎么办 手机不支持微信运动怎么办 淘宝虚拟商品买家退货退款怎么办 虚拟品申请啦退货退款怎么办 淘宝充值话费没到账怎么办 淘宝全球购买到假货怎么办 车跑路上没油了怎么办 摩托车跑路上没油了怎么办 话费充了不到帐怎么办