题解 | #IP地址#

IP地址

https://www.nowcoder.com/practice/2359e23180194f99828f5cd9c764236a

#include <iostream>
using namespace std;

bool Isip(string s)
{
    int i=0;
    for(int j=0;j<s.length();j++)
    {
        if(s[j]=='.'||j==s.length()-1)
        {
            int temp=stoi(s.substr(i,j));
            i=j+1;
            if(temp>255||temp<0)
            {
                return false;
            }
        }
    }
    return true;
}

int main() {
    string s;
    while(cin>>s)
    {
        if(Isip(s))cout<<"Yes!"<<endl;
        else cout<<"No!"<<endl;
    }
    return 0;
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

Noob1024:一笔传三代,人走笔还在
点赞 评论 收藏
分享
11-18 15:57
门头沟学院 Java
最终归宿是测开:这个重邮的大佬在重邮很有名的,他就喜欢打92的脸,越有人质疑他,他越觉得爽😂
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务