Problem of IP
时间限制:1000 ms | 内存限制:65535 KB
难度:2
- 描述
- 众所周知,计算机只能识别二进制数据,而我们却习惯十进制。所以人们发明了点分十进制来表示IP地址。即用以点分开的四个十进制数表示32位的二进制IP地址,每个数字代表IP地址中的8位。现在需要你编写程序实现二者之间的转换。
- 输入
- 输入包含多组测试数据。每组一行或为32位01字符串,或为一个点分十进制字符串。
- 输出
- 对于每一组输入,输出包含一行,为对应的另一种格式的IP地址
- 样例输入
-
00000000000000000000000000000000 255.255.255.255
- 样例输出
-
0.0.0.0 11111111111111111111111111111111
-
本题要多注意点分十进制转换为32位01字符串时,01的字符串的存储顺序。
-
AC码:
-
#include<stdio.h> #include<string.h> int f[8]={1,2,4,8,16,32,64,128}; int main() { int i,sum,len,count,j; char str[35],ch[33]; while(~scanf("%s",str)) { len=strlen(str); if(len==32) { sum=(str[0]-‘0‘)*f[7]; for(i=1;str[i]!=‘\0‘;i++) { if(i%8==0) { printf("%d.",sum); sum=(str[i]-‘0‘)*f[7]; } else { sum+=(str[i]-‘0‘)*f[7-(i%8)]; } } printf("%d\n",sum); } else { ch[32]=‘\0‘; j=0; for(i=0;str[i]!=‘\0‘;i++) { if((str[i]>=‘0‘)&&(str[i]<=‘9‘)) { sum=0; while((str[i]>=‘0‘)&&(str[i]<=‘9‘)) { sum=sum*10+(str[i]-‘0‘); i++; } count=j+7; while(count>=j) { ch[count]=((sum%2)+‘0‘); sum=sum/2; count--; } j=j+8; } if(str[i]==‘\0‘) break; } printf("%s\n",ch); } } return 0; }
NYOJ 630 Problem of IP,布布扣,bubuko.com
时间: 2024-10-03 06:39:51