Computer Applications
Write the program in Java to display the first ten terms of the following series:
0, 7, 26,
Java
Java Iterative Stmts
102 Likes
Answer
public class KboatSeries
{
public static void main(String args[]) {
for (int i = 1; i <= 10; i++) {
int term = (int)(Math.pow(i, 3) - 1);
System.out.print(term + " ");
}
}
}
Variable Description Table
Program Explanation
Output
Answered By
47 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:
4, 16, 36, 64,
Write the program in Java to display the first ten terms of the following series:
4, 8, 16, 32,
Write the program in Java to display the first ten terms of the following series:
1, 9, 25, 49,