#include <stdio.h>
#include <stdlib.h>
int main(void)
{
char cmd[110]="nslookup ";
scanf("%100s",cmd+9);
system(cmd);
return 0;
}
我也写了个程序,比flyue你的短,哈哈哈……
#include <stdlib.h>
int main(void)
{
char cmd[110]="nslookup ";
scanf("%100s",cmd+9);
system(cmd);
return 0;
}
我也写了个程序,比flyue你的短,哈哈哈……