说明: By building IPv6 into Cisco IOS software, we are enabling continued growth of the Internet and its expansion into new applications and capabilities in a way that maintains compatibility with existing Internet services." -- Stephen Deering, Cisco Fel <sunxianbin> 在 上传 | 大小:4194304
说明: 这个题目程序应该如何编写呢?题目要求是每输入两个整数A和B。输出A+B的结果,每个结果占一行。输入以文件结束。这个是我写的程序: #include using namespace std; int main() { int A, B; while(cin >> A >> B) { cout << A + B << endl; } return 0; } <sphinx1990> 在 上传 | 大小:848896