问题具体内容查询洛谷
此文档只作为记录参考,本人为敲代码蒟蒻(轻喷),部分代码内容参考过夜上夏叶的文章
以下是代码内容
import java.util.Scanner;
public class Main{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a= sc.nextInt();int b=14,r,p;double c;
if(a==1){
System.out.println("I love Luogu!");
} else if (a==2) {
System.out.println("6 4");
} else if (a==3) {
System.out.println(b/4);
System.out.println(b-14%4);
System.out.println(b%4);
} else if (a==4) {
c=(double) 500/3;
System.out.printf("%.3f",c);
} else if (a==5) {
b=(260+220)/(12+20);
System.out.println(b);
} else if (a==6) {
c=Math.sqrt(6*6+9*9);
System.out.printf("%.4f",c);
} else if (a==7) {
b=100;
System.out.println(b+10);
System.out.println(b+10-20);
System.out.println(0);
} else if (a==8) {
c=3.141593;
r=5;
double u=2*c*r;
String cs=String.format("%.4f", u);
System.out.println(cs);
double s=c*r*r;
String ss=String.format("%.4f", s);
System.out.println(ss);
double v=4*c*r*r*r/3;
String vs=String.format("%.3f", v);
System.out.println(vs);
} else if (a==9) {
p=1;r=4;
for(int i=r-p;i>=1;i--){
int n = (p+1)*2;
p=n;
}
System.out.println(p);
} else if (a==10) {
System.out.println(9);
} else if (a==11) {
System.out.printf("%.4f",(double)100/3);
} else if (a==12) {
System.out.println(('M'-'A')+1);
System.out.println((char)('A'+18-1));
} else if (a==13) {
c=3.141593;
int r1=4,r2=10;
double v=4*c*r1*r1*r1/3+4*c*r2*r2*r2/3;
double d=Math.pow(v,1.0*1/3);
System.out.println((int)d);
} else if (a==14) {
System.out.println(50);
}
}
}