还能再减少内存吗
2023-06-03 11:58:02
发布于:广东
127阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main() {
long long a, b;
cin >> a >> b;
cout << a+b << endl;
return 0;
}
全部评论 9
还有
#include<cstdio>
main(){printf("5");}2024-01-24 来自 江苏
1这是我搞出来的(
2024-01-25 来自 广东
0hhh
2024-09-22 来自 浙江
0
#include<iostream> using namespace std; int main(){ cout<<5; }
2024-07-28 来自 浙江
0python:
print(5)
2024-07-27 来自 广东
0#include <cstdio>
using namespace std;
int main(){printf("5");}2024-01-25 来自 辽宁
0亲,这边可以不用长整数,毕竟有计算器谁用这玩意儿算呀
2023-08-02 来自 河南
0(⊙o⊙)…
2024-07-28 来自 浙江
0
#include<bits/stdc++.h>
int main(){short a, b;stdcin>>a>>b;stdcout<<a + b;return 0;}2023-07-29 来自 广东
0#include <iostream>
int main() {
short int a, b;
stdcin >> a >> b;
stdcout << a + b << '\n';
return 0;
}2023-06-10 来自 浙江
0数据范围小于10亿,可以开int
2023-06-04 来自 江苏
0你可以用头文件<cstdio>然后用scanf和printf减少时间
2023-06-04 来自 江苏
0
有帮助,赞一个