Computer Applications
Write the program in Java to display the first ten terms of the following series:
1, 11, 111, 1111,
Java
Java Iterative Stmts
74 Likes
Answer
public class KboatSeries
{
public void generateSeries() {
int term = 1;
for (int i = 1; i <= 10; i++) {
System.out.print(term + ", ");
term = term * 10 + 1;
}
}
}
Variable Description Table
Program Explanation
Output
Answered By
33 Likes
Related Questions
Write the program in Java to display the first ten terms of the following series:
1, -3, 5, -7, 9,
Write the program in Java to find the sum of the following series:
S = 1 + 1 + 2 + 3 + 5 + ……. to n terms
Write the program in Java to display the first ten terms of the following series:
1, 12, 123, 1234,
Write the program in Java to display the first ten terms of the following series:
0, 3, 8, 15,