Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
36926 | YOYOLEE-李昕颖 | 大整数加法 | C++ | 编译错误 | 0 MS | 0 KB | 163 | 2024-01-18 14:05:12 |
#include<bits/stdc++.h> using namespace std; int main() { string a,b; cin>>a>>b; for(int i=0;i<strlen(a);i++){ cout<<a[i]+b[i]-'0'; } return 0; }