Answer:
electric
Explanation:
eletric is not a print ouo
Answer:
public class Main
{
public static void main(String[] args) {
System.out.println(starString(4));
}
public static String starString(int n){
double p = Math.pow(2,n);
String s = "";
for(int i=0; i<p; i++)
s += "*";
return s;
}
}
Explanation:
Create a method named starString that takes an integer parameter, n
Get the 2 to the nth power using pow method and set it to the p
Create an empty string that will hold the asterisks
Create a for loop that will iterate p times. Inside the loop, concatenate an asterisk to the s
Return the s
Inside the main method, call the method with an integer parameter
public class MyClass {
public static void main(String args[]) {
int x = 1;
int total = 0;
for (int i = 1; i <= 10; i++){
x *= i;
total += x;
}
System.out.println(total);
}
}
This program finds the sum of that series to the tenth term, the sum is: 4037913. I hope this helps.