码迷,mamicode.com
首页 > 其他好文 > 详细

题解 AT4556 【12/22】

时间:2020-02-28 12:25:56      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:for   http   cpp   c++   com   class   ring   string   www   

题目传送门
___________
主要思路

  1. 我们可以使用\(C++\)语言中的\(string\)字符串来解。

  2. 先定义一个字符串\(s\),并输入\(s\)
    string s;
    cin>>s;
  1. 接着,依次寻找\(2\)的个数。
    for(int i=0;i<s.size();i++)
        if(s[i]=='2')
            cnt++;
  1. 输出最终的结果\(cnt\)
    cout<<cnt;

完整代码

#include<bits/stdc++.h>
using namespace std;
int main()
{
    string s;
    cin>>s;
    int cnt;
    for(int i=0;i<s.size();i++)if(s[i]=='2')cnt++;
    cout<<cnt;
    return 0;
}

题解 AT4556 【12/22】

标签:for   http   cpp   c++   com   class   ring   string   www   

原文地址:https://www.cnblogs.com/tearing/p/12376370.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!