您的代码已保存答案错误:您提交的程序没有通过所有的测试用例点击对比用例标准输出与你的输出case通过率为90.00% 用例:255.0.0.0193.194.202.15232.43.7.59 对应输出应该为: 1 你的输出为: 2 #include <bits/stdc++.h> using namespace std; struct IP { int a, b, c, d; IP() {} IP(int a, int b, int c, int d) { this->a = a; this->b = b; ...