6 条题解
-
1Jerry LV 6 @ 2023-3-23 17:42:54
using namespace std; int main(){ int x; cin>>x; cout<<x<<" "<<x*10; }
-
02023-3-26 16:41:11@
-
02023-1-13 15:40:53@
#include<bits/stdc++.h> using namespace std; int main(){ int x; cin>>x; cout<<x<<" "<<x*10; }
-
02022-12-4 16:30:01@
#include<iostream> using namespace std; int main () { long long x; cin>>x; cout<<x<<" "<<10*x; return 0 ; }
-
-12022-10-4 19:32:11@
#include<cstdio> main() { int n; std::scanf("%d",&n); std::printf("%d %d",n,n*10); }
-
-12022-8-28 18:01:44@
#include<iostream> using namespace std; int main() { int x; cin>>x; long long ans=x*10; cout<<x<<" "<<ans; return 0; }
- 1
信息
- ID
- 2720
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 1
- 标签
- 递交数
- 562
- 已通过
- 236
- 上传者