『壹』 求對一個字元串判斷是否為ip地址的C程序
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
int main()
{
char ip[20];
printf("請輸入ip\n"); //點分十進制
scanf("%s",ip);
const char* del=".";
char* token=strtok(ip,del);
int i=0,tem=0;
bool flag=1;
while(token!=0)
{
i++;
tem=atoi(token);
if(tem>255||tem<0)
{
printf("不是,ip地址的點分十進制大於等於0小於等於255\n");
flag=0;
break;
}
token=strtok(0,del);
if(i>=5)
{
printf("不是點分十進制的ip\n");
flag=0;
break;
}
}
if(i<4&&flag)
{
printf("不是點分十進制的ip\n");
flag=0;
}
if(flag) printf("是點分十進制的ip\n");
return 0;
}
『貳』 菜鳥c語言編程判斷IP MAC地址是否合法
可以試一下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include <stdio.h>
int checkIP(const char* p)
{
int n[4];
char c[4];
if (sscanf(p, "%d%c%d%c%d%c%d%c",
&n[0], &c[0], &n[1], &c[1],
&n[2], &c[2], &n[3], &c[3])
== 7)
{
int i;
for(i = 0; i < 3; ++i)
if (c[i] != '.')
return 0;
for(i = 0; i < 4; ++i)
if (n[i] > 255 || n[i] < 0)
return 0;
return 1;
} else
return 0;
}
int main()
{
const char* x[] =
{
"192.168.1.1",
"10.0.0.1.",
"127.256.0.1",
"iugerjiogjioe",
"172.16,0.1",
0
};
const char* m[] =
{
"不是合法的IP地址",
"是合法的IP地址"
};
int i = 0;
while(x[i] != 0) {
printf("%s %s\n", x[i], m[checkIP(x[i])]);
++i;
}
return 0;
}
『叄』 菜鳥求助 C語言編程判斷IP MAC地址是否合法
#include <stdio.h>
int checkIP(const char* p)
{
int n[4];
char c[4];
if (sscanf(p, "%d%c%d%c%d%c%d%c",
&n[0], &c[0], &n[1], &c[1],
&n[2], &c[2], &n[3], &c[3])
== 7)
{
int i;
for(i = 0; i < 3; ++i)
if (c[i] != '.')
return 0;
for(i = 0; i < 4; ++i)
if (n[i] > 255 || n[i] < 0)
return 0;
return 1;
} else
return 0;
}
int main()
{
const char* x[] =
{
"192.168.1.1",
"10.0.0.1.",
"127.256.0.1",
"iugerjiogjioe",
"172.16,0.1",
0
};
const char* m[] =
{
"不是合法的IP地址",
"是合法的IP地址"
};
int i = 0;
while(x[i] != 0) {
printf("%s %s\n", x[i], m[checkIP(x[i])]);
++i;
}
return 0;
}
『肆』 c語言IP判斷
直接寫個答案吧,希望對你有幫助。
#include <stdio.h>
#define MAX 30
int justfy(char *str)
{
char *p = str;
int subint[4];
int i, flag = 1;
while (*p)
{
if (!( *p >= '0' && *p <= '9' || *p == '.'))
flag = 0;
p++;
}
if(flag)
{
sscanf (str, "%d.%d.%d.%d",
&subint[0], &subint[1], &subint[2], &subint[3]);
for (i=0; i<4; i++)
if (subint[i] > 255)
flag = 0;
}
return flag;
}
int main ()
{
char str[30];
int flag[MAX];
int i = 0, j;
while (gets (str) != NULL && i < MAX)
{
flag[i] = justfy (str);
i++;
}
for (j=0; j<i; j++)
printf (flag[j]? "Y\n": "N\n");
return 0;
}
『伍』 c語言ip判斷
#include<stdio.h>
structIP
{
inta;
charq1;
intb;
charq2;
intc;
charq3;
intd;
}s;
voidyesno()
{
scanf("%d%c%d%c%d%c%d",&s.a,&s.q1,&s.b,&s.q2,&s.c,&s.q3,&s.d);
if(s.a<256&&s.a>0&&s.b<256&&s.b>0&&s.c<256&&s.c>0&&s.d<256&&s.d>0)
{
if(s.q1=='.'&&s.q1=='.'&&s.q1=='.')printf("YES ");
elseprintf("NO ");
}
elseprintf("NO ");
}
main()
{
inti;
for(i=0;i<99;i++)
{yesno();}
}
『陸』 請問 , 用c語言怎樣獲取ip地址啊 謝謝了
看你要獲得那裡的ip地址
如果是本及機的話,就使用windows的API啊
#include "winsock.h"
WORD wVersionRequested;
WSADATA wsaData;
char name[255];
char* ip;
PHOSTENT hostinfo;
wVersionRequested = MAKEWORD( 2, 0 );
if ( WSAStartup( wVersionRequested, &wsaData ) == 0 )
{
if( gethostname ( name, sizeof(name)) == 0)
{
if((hostinfo = gethostbyname(name)) != NULL)
{
ip = inet_ntoa (*(struct in_addr *)*hostinfo->h_addr_list);
}
}
// ip is ready
WSACleanup( );
}
『柒』 c語言實現判斷ip地址是否合法
#include<stdio.h>
intcheckIP(constchar*p)
{
intn[4];
charc[4];
if(sscanf(p,"%d%c%d%c%d%c%d%c",
&n[0],&c[0],&n[1],&c[1],
&n[2],&c[2],&n[3],&c[3])
==7)
{
inti;
for(i=0;i<3;++i)
if(c[i]!='.')
return0;
for(i=0;i<4;++i)
if(n[i]>255||n[i]<0)
return0;
return1;
}else
return0;
}
intmain()
{
constchar*x[]=
{
"192.168.1.1",
"10.0.0.1.",
"127.256.0.1",
"iugerjiogjioe",
"172.16,0.1",
0
};
constchar*m[]=
{
"不是合法的IP地址",
"是合法的IP地址"
};
inti=0;
while(x[i]!=0){
printf("%s%s ",x[i],m[checkIP(x[i])]);
++i;
}
return0;
}
『捌』 C語言題目:輸入一個IP地址,判斷是否為正確形式
if((a[i]<'0'||a[i]>'9')&&a[i]!='.')//正確形式的時候
這一句,在ASCII表中0是在9前面的,所以應該是a[i]>='0'&&a[i]<='9',中間是邏輯與,這樣可以保證只有數字才有效
還有,你的程序邏輯也有點問題,for(i=1;a[i]!='\n';i++),這是從a[1]開始判斷,但是,應該是從a[0]開始判斷。
再有,這個for循環裡面,一開始判斷的是輸入的段數,你是根據點號判斷的,你自己數一下,應該是3個點,但是你卻是判斷的 j!=4;肯定報錯的
還有,判斷大於3個數字的那裡也有問題,你從始至終都只給b[]賦值過1,而且b[]並未初始化,數組元素值不確定,怎麼能b[1]-b[0]>4呢?
『玖』 C語言如何實現IP地址查詢系統
C語言如何實現IP地址查詢系統
參考如下:
voidGetNameAndIp()
{
structhostent*host;
structin_addr*ptr;
DWORDdwScope=RESOURCE_CONTEXT;
NETRESOURCE*NetResource=NULL;
HANDLEhEnum;
WNetOpenEnum(dwScope,NULL,NULL,NULL,&hEnum);
WSADATAwsaData;
WSAStartup(MAKEWORD(1,1),&wsaData);
if(hEnum)
{
DWORDCount=0xFFFFFFFF;
DWORDBufferSize=10240;
LPVOIDBuffer=newchar[10240];
WNetEnumResource(hEnum,&Count,Buffer,&BufferSize);
NetResource=(NETRESOURCE*)Buffer;
charszHostName[200];
for(unsignedinti=0;i<BufferSize/sizeof(NETRESOURCE);i++,NetResource++)
{
if(NetResource->dwUsage==RESOURCEUSAGE_CONTAINER&&NetResource->dwType==RESOURCETYPE_ANY)
{
if(NetResource->lpRemoteName)
{
CStringstrFullName=NetResource->lpRemoteName;
if(0==strFullName.Left(2).Compare(_T("\\")))
strFullName=strFullName.Right(strFullName.GetLength()-2);
gethostname(szHostName,strlen(szHostName));
USES_CONVERSION;
char*pchar=T2A(strFullName);
host=gethostbyname(pchar);
if(host==NULL)continue;
ptr=(structin_addr*)host->h_addr_list[0];
stringstr="";
for(intn=0;n<4;n++)
{
CStringaddr;
if(n>0)
{
str+=".";
}
intvalue=(unsignedint)((unsignedchar*)host->h_addr_list[0])[n];
charp[20];
sprintf(p,"%d",value);
str.append(p);
}
std::cout<<"IP:"<<str<<"Name:"<<host->h_name<<std::endl;
}
}
}
deleteBuffer;
WNetCloseEnum(hEnum);
}
WSACleanup();
}