#include <stdio.h>
#include <stdlib.h>// 求最大公因数
int gcd(int a, int b)
{return b 0? a : gcd(b, a % b);
}// 化简分数
void simplify(int *num, int *den)
{int g gcd(*num, *den);*num / g;*den / g;if (*den < 0) {*num * -1;*den * -1;}
}//…
一、全局 IP 地址(公网 IP 地址)和私有 IP 地址
RFC 1918 规定了用于组建局域网的私有 IP 地址:
10.0.0.0 ~ 10.255.255.255172.16.0.0 ~ 172.31.255.255192.168.0.0 ~ 192.168.255.255
包含在以上范围内的 IP 地址都属于私有 IP 地址,而在此之外的 I…