| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134590 | 左锶焜 | [在线测评解答教程] A+B Problem | C++ | Wrong Answer | 1 MS | 272 KB | 297 | 2025-10-28 19:49:30 |
#include<bits/stdc++.h> using namespace std; int main() { char a[151]; cin >> a; char b[151]; cin >> b; int e = 0, f = 0; while (a[e] != '\0') { e += 1; } while (b[f] != '\0') { f += 1; } if (e == f) { cout << "yes"; } else { cout << "no"; } return 0; }
------Input------
87 93
------Answer-----
180
------Your output-----
yes