能力值:
( LV7,RANK:100 )
|
-
-
2 楼
偶不会C语言,不过还是写了一段。
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
static char *str1="128.0.0.3-127.0.0.1";
main()
{
int i[8]={0};int j;
char *str2,*a;
str2=strchr(str1,45);
*str2=46;
for (j=0;j<8;j++)
{
str2=strchr(str1,46);
i[j]=strtol(str1, &a, 10);
str1=str2+1;
printf("%d\n",i[j]);
}
}
|
能力值:
( LV6,RANK:90 )
|
-
-
3 楼
最初由 wangshy 发布 偶不会C语言,不过还是写了一段。
#include "stdio.h" #include "stdlib.h" #include "string.h" ........
跟我的问题有点类似,"程序遇到问题,需要关闭
|
能力值:
( LV7,RANK:100 )
|
-
-
4 楼
tc 2.0 中没问题,只是随便写的
|
能力值:
( LV4,RANK:50 )
|
-
-
5 楼
#include <windows.h>
#include <stdio.h>
void main()
{
char body[] = "128.0.0.1-127.0.0.1";
int IP_A1;
int IP_A2;
int IP_A3;
int IP_A4;
int IP_B1;
int IP_B2;
int IP_B3;
int IP_B4;
sscanf(body,"%d.%d.%d.%d-%d.%d.%d.%d",&IP_A1,&IP_A2,&IP_A3,&IP_A4,&IP_B1,&IP_B2,&IP_B3,&IP_B4);
}
|
|
|