Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
126008 | 袁梓豪 | 05求百位数的每一位数之和 | C++ | Wrong Answer | 1 MS | 268 KB | 180 | 2025-07-15 17:13:26 |
#include<bits/stdc++.h> using namespace std; int main() { int a; int b; cin>>a>>b; int c=a*2+b*2; int d=a*b; cout <<c<<" "<<d; return 0; }
------Input------
923
------Answer-----
14
------Your output-----
1846 0