竞赛
考级
Jason-JHT
飞的智动
zsy
#冷知识:代码中可以删除“return 0;”,因为它其实没有用,占内存。 下面是我的一坨代码:
int n;
#include<iostream> using namespace std; int main(){ int A,B; cin >> A>>B; cout << A+B; return 0; }
@辞
复仇者_Y38╋════━➢
#include<iostream> using namespace std; int main(){ double a,b; cin>>a>>b; cout<<a+b; return 0; }
天之神_复仇者_ZDZC