摘要:
#include #include using namespace std; #define N 21252 int main() { int p, e, i, d, caseNo = 0; // -1 代表输入结束 while (cin >> p >> e >> i >> d && p != -1) { ++caseNo; ... 阅读全文
摘要:
A typedef name shall be unique across all name spaces and translation units. Multiple declarations of the same typedef name are only permitted by this 阅读全文