Untitled
unknown
java
a year ago
529 B
7
Indexable
import java.util.Scanner;
public class P1 {
public static int Sol(int x, int n) {
int sumValue = 0;
for (int i = 1; i <= n; i++) {
sumValue += Math.pow(-1, i + 1) * Math.pow(x, i);
}
return sumValue;
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
int n = sc.nextInt();
System.out.println(Sol(x, n));
// Sol(x, n);
// if (Sol(n)) {
// System.out.println("YES");
// } else {
// System.out.println("NO");
// }
}
}Editor is loading...
Leave a Comment