求编程达人帮我编个小程序~

软件要求是设定一个ip段比如110.110.0.0----110.110.255.255设定好几个端口比如808080等等然后将这两个ip段之间所有的ip列出并保存在ip... 软件要求是
设定一个ip段 比如 110.110.0.0----110.110.255.255
设定好几个端口 比如 80 8080 等等
然后将这两个ip段之间所有的ip列出
并保存在 ip.txt中

结果如下:
110.110.0.0:80
110.110.0.0:8080
110.110.0.1:80
.......

做好以后,发我邮箱里吧~
用什么语言无所谓,只要能达到要求的功能就行
测试可用后,200分送上...
cgl4134@163.com
谢谢了~~
展开
 我来答
icfed
2009-08-11 · 超过55用户采纳过TA的回答
知道小有建树答主
回答量:201
采纳率:0%
帮助的人:0
展开全部
代码如下所示,vc6.0上运行通过
#include <stdio.h>
#include <winsock2.h>
#pragma comment(lib,"Wsock32.lib")

int main()
{
unsigned long ulBeginIP;
unsigned long ulEndIP;
char szBeginIP[20] = "110.110.255.0";
char szEndIP[20] = "110.110.255.255";
unsigned long ulCurIP;
unsigned short ausPort[10] = {80,8080};
int PortNum = 2;
int i;
in_addr inaddr;

FILE *pFile = NULL;
pFile = fopen("ip.txt", "at");
if (NULL == pFile)
{
printf("open ip.txt fail.\r\n");
return 0;
}

ulBeginIP = ntohl(inet_addr(szBeginIP));
ulEndIP = ntohl(inet_addr(szEndIP));

for (ulCurIP = ulBeginIP; ulCurIP <= ulEndIP; ulCurIP++)
{
for (i = 0; i < PortNum; i++)
{
inaddr.S_un.S_addr = htonl(ulCurIP);
fprintf(pFile, "%s:%d\r\n", inet_ntoa(inaddr), ausPort[i]);
}

}

fclose(pFile);
return 1;
}
匿名用户
2009-08-12
展开全部
诶有!真是笨蛋!好好学C++语言吧!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式