Computer Applications
Write the program in Java to display the first ten terms of the following series:
1, 2, 4, 7, 11,
Java
Java Iterative Stmts
278 Likes
Answer
public class KboatSeries
{
public static void main(String args[]) {
for (int i = 0; i < 10; i++) {
int term = 1 + ((i * (i + 1)) / 2);
System.out.print(term + " ");
}
}
}
Variable Description Table
Program Explanation
Output

Answered By
132 Likes
Related Questions
Rewrite the following program using while loop:
import java.io.*; class Sample { public static void main(String args[]) throws IOException { int n,r; InputStreamReader read = new InputStreamReader(System.in); BufferedReader in = new BufferedReader(read); System.out.println("Enter a number"); n=Integer.parseInt(in.readLine()); do { r=n%10; n=n/10; System.out.println(r); } while(n!=0); } }
Write the program in Java to display the first ten terms of the following series:
1, 4, 9, 16,
Write the program in Java to display the first ten terms of the following series:
3, 6, 9, 12,
Write the program in Java to display the first ten terms of the following series:
4, 8, 16, 32,