题解 AT5228 [ABC162A] Lucky 7

Posted tearing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了题解 AT5228 [ABC162A] Lucky 7相关的知识,希望对你有一定的参考价值。

AT5228 [ABC162A] Lucky 7

题面中已经保证 (s) 的长度为 (3),也就是说,我们只需要把 (s_0)(s_1)(s_2) 全部判断一遍,只要有一个是 (7),则输出 Yes,否则输出 No

代码:

#include <bits/stdc++.h>
using namespace std;
int main()
{
    string s;
    cin >> s;
    if(s[0] == ‘7‘ || s[1] == ‘7‘ || s[2] == ‘7‘)
        cout << "Yes";
    else 
        cout << "No";
    return 0;
}

以上是关于题解 AT5228 [ABC162A] Lucky 7的主要内容,如果未能解决你的问题,请参考以下文章

AT_abc139f 题解

AT_abc106_d [ABC106D] AtCoder Express 2 题解

题解 AT3718 [ABC081B] Shift only

题解 AT3717 [ABC081A] Placing Marbles

题解 AT4170 [ABC103A] Task Scheduling Problem

题解 AT4164 [ABC102A] Multiple of 2 and N