孙轩宇 @ 2024-02-12 15:06:26
我把zip文件提交后,说文件数量超过限制,不让提交,怎么办?
by niuzh @ 2024-02-13 19:40:51
这不是提交答案题吧
by 孙轩宇 @ 2024-02-16 17:45:38
@niu_zh 提示里不是说可以提交答案吗?
by Kete @ 2024-02-18 11:29:03
@孙轩宇 我是这样写的
上全AC代码
#include<bits/stdc++.h>//直接使用万能头文件
using namespace std;
int main() {
int T;
cin >> T;
if (T == 1) {
//问题 1 的代码
cout << "I love Luogu!";
} else if (T == 2) {
//问题 2 的代码
cout << 2 + 4 << " " << 10 - 2 - 4;
} else if (T == 3) {
//问题 3 的代码
int a=14/4;
cout<<a<<endl;
cout<<a*4<<endl;
cout<<14-a*4<<endl;
} else if (T == 4) {
//题 4 的代码
cout<<500.0/3<<endl;
} else if (T == 5) {
//问题 5 的代码
cout<<(260+220)/(12+20)<<endl;
} else if (T == 6) {
//问题 6 的代码
double a=6,b=9;
double c=sqrt(a*a+b*b);
cout<<c<<endl;
} else if (T == 7) {
//问题 7 的代码
int a=100;
a+=10; //存了10元
cout<<a<<endl;
a-=20; //花了20元
cout<<a<<endl;
a=0; //全部取出
cout<<a<<endl;
} else if (T == 8) {
//问题 8 的代码
int r=5;
double pi=3.141593;
cout<<2*pi*r<<endl;
cout<<r*r*pi<<endl;
cout<<4.0/3*pi*r*r*r<<endl;
} else if (T == 9) {
//问题 9 的代码
cout<<(((1+1)*2+1)*2+1)*2<<endl;
} else if (T == 10) {
//问题 10 的代码
cout<<9<<endl;
} else if (T == 11) {
//问题 11 的代码
cout<<100.0/(8-5)<<endl;
} else if (T == 12) {
//问题 12 的代码
cout<<'M'-'A'+1<<endl;
cout<<char('A'-1+18)<<endl;
} else if (T == 13) {
//问题 13 的代码
int r1=4,r2=10;
double pi=3.141593;
double v=4.0/3*pi*r1*r1*r1+4.0/3*pi*r2*r2*r2;
v=pow(v,1.0/3);
printf("%.0lf\n",v); //%.0lf可直接舍去小数部分
} else if (T == 14) {
//问题 14 的代码
cout<<50<<endl;
}
return 0;
}
仅供参考
by 孙轩宇 @ 2024-02-18 11:34:13
额…我就是不想打代码(笑),觉得提交答案会更简单
by 孙轩宇 @ 2024-02-18 13:41:41
算了,我去打代码吧,此贴终
by wujiaxuan2013 @ 2024-04-20 16:56:39
挺简单的