UVa1590 IP Networks(IP网络)

UVa1590 IP Networks(IP网络)_第1张图片

UVa1590 IP Networks(IP网络)_第2张图片

#include 
#include 
#include 
#include 
#include 
using namespace std;
 
int zwym_table[9] = {255, 254, 252, 248, 240, 224, 192, 128, 0};
 
int main()
{
	int ip[4][1024];
	int m;
	while(scanf("%d",&m)!=EOF)
	{
		memset(ip, 0, sizeof(ip));
		int zwym[4];
		int minip[4];
		for(int i=0; i

 

你可能感兴趣的:(C/C++)