Computer Applications
Write the program in Java to display the first ten terms of the following series:
4, 8, 16, 32,
Java
Java Iterative Stmts
81 Likes
Answer
public class KboatSeries
{
public static void main(String args[]) {
for (int i = 2; i <= 11; i++) {
System.out.print((int)(Math.pow(2, i)) + " ");
}
}
}
Variable Description Table
Program Explanation
Output
Answered By
37 Likes
Related Questions
Write the program in Java to display the first ten terms of the following series:
1.5, 3.0, 4.5, 6.0,
Write the program in Java to display the first ten terms of the following series:
1, 2, 4, 7, 11,
Write the program in Java to display the first ten terms of the following series:
0, 7, 26,
Write the program in Java to display the first ten terms of the following series:
3, 6, 9, 12,