Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
126304 | 唐洪盛 | 06数字拼接 | C++ | Wrong Answer | 1 MS | 268 KB | 140 | 2025-07-17 16:26:46 |
#include<bits/stdc++.h> using namespace std; int main() { int a,n,m; cin>>a>>n>>m; cout<<a*100<<n*10+m; return 0; }
------Input------
7 7 9
------Answer-----
779
------Your output-----
70079