这里想强调一下,巧妙运用#include<string.h>里面的strtok函数和#include<math.h>里面的atof函数可以很容易做这题。
#include<stdio.h>
#include<iostream>
#include<string.h>
#include<stdlib.h>
using namespace std;
int main()
{
char str1[100],str2[100]=".";//str1为待输入字符串,str2为分割字符
int a,flag=0;
char *res=NULL;//指针必须初始化
while(scanf("%s",str1)!=EOF)
{
res=strtok(str1,str2);//返回分割下来字符串首地址,若分完了就为NULL
while(res!=NULL)//只要不空
{
a=int(atof(res));//atof的功能是将字符串表示的浮点数或整数转成double类型数据,这里我还用了一下强制类型转换
if(!(a>=0&&a<=255))//ip地址是这样对吧
{
flag=1;
break;
}
res=strtok(NULL,str2);//看还有没有剩下的串
}
if(flag==1)
printf("No!\n");
else
printf("Yes!\n");
}
}