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

IP地址转十进制

时间:2018-06-11 23:37:53      阅读:902      评论:0      收藏:0      [点我收藏+]

标签:code   std   please   lease   span   %s   IV   put   col   

 1 #include <iostream> 
 2 using namespace std;
 3 
 4 int main()
 5 {
 6     char *IP;
 7     int ip1, ip2, ip3, ip4;
 8     unsigned long result = 0;
 9     printf("Please input IP: ");
10     scanf("%s", IP);
11     sscanf(IP, "%d.%d.%d.%d", &ip1, &ip2, &ip3, &ip4);
12     if(ip1 > 255 || ip2 > 255 || ip3 > 255 || ip4 > 255)
13     {
14         printf("Input IP is wrong!\n");
15         return 0;
16     }
17     result = ip1 * 256 * 256 * 256 + ip2 * 256 * 256 + ip3 * 256 + ip4;
18     printf("The decimal IP is: %u.\n", result);
19     return 0;
20 }
21  

 

IP地址转十进制

标签:code   std   please   lease   span   %s   IV   put   col   

原文地址:https://www.cnblogs.com/hoy0a1d/p/9170422.html

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