题解 | #整数与IP地址间的转换#按照输入格式粗暴分类

整数与IP地址间的转换

https://www.nowcoder.com/practice/66ca0e28f90c42a196afd78cc9c496ea

#include <bitset>
#include <iostream>
#include <string>
using namespace std;

int main() {
    string str1;
    string str2;
    int num=0;
    long ans_out1=0;
    getline(cin, str1);
    getline(cin, str2);
    string temp_string=str1;
    string string_out;
    int total_len=str1.size();
    for (int temp=0; temp<4; temp++) 
    {
        string temp_answer;
        total_len=temp_string.size();
        int temp_num=temp_string.find('.');
        temp_answer=temp_string.substr(0,temp_num);
        temp_string=temp_string.substr(temp_num+1,total_len-temp_num-1);
        double num_for_answer=1;
        for(int i=3;i>temp;i--)
            num_for_answer=num_for_answer*256;
        ans_out1=ans_out1+stoi(temp_answer)*num_for_answer;
    }
    cout<<ans_out1<<endl;
    long total_num=stol(str2);
    long temp_num2=total_num;
    for (int temp=0; temp<4; temp++) 
    {
        int answer_num=0;
        long num_for_answer=1;
        if(temp<3)
        {
            for(int i=3;i>temp;i--)
            num_for_answer=num_for_answer*256;
        }
        answer_num=temp_num2/num_for_answer;
        string_out=string_out+to_string(answer_num);     
        if(temp!=3)
        string_out=string_out+".";
        temp_num2=temp_num2%num_for_answer;
    }
    cout<<string_out<<endl;
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

已老实求offer😫:有点像徐坤(没有冒犯的意思哈)
点赞 评论 收藏
分享
Bug压路:老哥看得出来你是想多展示一些项目,但好像一般最多两个就够了😂页数一般一页,多的也就2页;这些项目应该是比较同质化的,和评论区其他大佬一样,我也觉得应该展示一些最拿手的(质量>数量)😁😁😁专业技能部分也可以稍微精简一些
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务