华为oj之计算字符个数_极客玩家大白

题目: 计算字符个数

  • 热度指数:8276 时间限制:1秒 空间限制:32768K
  • 本题知识点: 字符串

题目描述

写出一个程序,接受一个有字母和数字以及空格组成的字符串,和一个字符,然后输出输入字符串中含有该字符的个数。不区分大小写。

输入描述:
1
输入一个有字母和数字以及空格组成的字符串,和一个字符。
输出描述:
1
输出输入字符串中含有该字符的个数。
输入例子:
1
2
ABCDEF
A
输出例子:
1
1

在线提交网址: http://www.nowcoder.com/practice/a35ce98431874e3a820dbe4b2d0508b1?tpId=37&tqId=21225&rp=&ru=/ta/huawei&qru=/ta/huawei/question-ranking

分析:

遍历输入的字符串, 将当前位置的字符与输入的字符进行比较, 如果差值为32、-32或0, 则将计算器+1. (注意: 不区分字母大小写)

已AC代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include<cstdio>
#include<iostream>
#include<string>
using namespace std;

int main()
{
    string str;
    char ch;
    cin>>str>>ch;
    int len = str.length();
    int count = 0;
    for(int i=0; i != len; i++)
    {
        if( (str[i] - ch == 32 || str[i] - ch == -32) || str[i] == ch)   // 不区分大小写
        {
            count++;
        }
    }
    cout<<count<<endl;
    return 0;
}

版权声明


一个有故事的程序员

(转载本站文章请注明作者和出处 极客玩家大白

点击了解 :.NET技术人的网站


Show Disqus Comments

Post Directory