publicclassMain { publicstaticvoidmain(String args[]) { Scanner sc = new Scanner(System.in); Integer a = sc.nextInt(); Integer b = sc.nextInt(); System.out.println(a + b); } }
2.序列求和
资源限制
时间限制:1.0s 内存限制:256.0MB
问题描述
求1+2+3+…+n的值。
输入格式
输入包括一个整数n。
输出格式
输出一行,包括一个整数,表示1+2+3+…+n的值。
代码
1 2 3 4 5 6 7 8 9 10 11 12 13
import java.util.Scanner;
publicclassMain{ publicstaticvoidmain(String args[]){ Scanner in = new Scanner(System.in); long n = in.nextInt(); if(1<=n&&n<=1000000000){ int a = 1; long s = n*a+(n*(n-1))/2; System.out.println(s); } } }
publicclassMain{ publicstaticvoidmain(String args[]){ Scanner in = new Scanner(System.in); int r = in.nextInt(); double PI=3.14159265358979323; if(1<=r&&r<=1000000){ double s = r*r*PI; System.out.println(String.format("%.7f",s)); } in.close(); } }