題目描述
功能:等差數列 2,5,8,11,14。。。。
輸入:正整數N >0
輸出:求等差數列前N項和
返回:轉換成功返回 0 ,非法輸入與異常返回-1
輸入描述
輸入一個正整數。
輸出描述
輸出一個相加後的整數。
輸入例子
2
輸出例子
7
算法實現
import java.util.Scanner;
/**
* All Rights Reserved !!!
*/
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Scanner scanner = new Scanner(Main.class.getClassLoader().getResourceAsStream("data.txt"));
while (scanner.hasNext()) {
String input = scanner.nextLine();
try {
System.out.println(sum(Integer.parseInt(input)));
} catch (Exception e) {
System.out.println("-1");
}
}
scanner.close();
}
private static int sum(int n) {
return (3 * n + 1) * n / 2;
}
}