最佳解法
2025-11-13 22:26:53
发布于:浙江
1阅读
0回复
0点赞
解法1:
#include <cstdio>
int main(){
printf("%d",34561234);
}
解法2:
#include<iostream>
using namespace std;
int main(){
ios::sync_with_stdio(false);
cout<<34561234<<'\n';
return 0;
}
注:解法1内存占用更小。
这里空空如也







有帮助,赞一个