- Home
- Studylists
Java Series Programs
Java Series Programs
Java Iterative Stmts
Write a program in Java to print the following series:
3, 6, 12, 24, 48, ….. to n
View Answer55 Likes
User Defined Methods
Design a class to overload a function series( ) as follows:
(a) void series (int x, int n) – To display the sum of the series given below:
x1 + x2 + x3 + ………. xn terms
(b) void series (int p) – To display the following series:
0, 7, 26, 63 ………. p terms
(c) void series () – To display the sum of the series given below:
1/2 + 1/3 + 1/4 + ………. 1/10
View Answer182 Likes
User Defined Methods
Design a class to overload a method series( ) as follows:
- double series(double n) with one double argument and returns the sum of the series.
sum = (1/1) + (1/2) + (1/3) + ………. + (1/n) - double series(double a, double n) with two double arguments and returns the sum of the series.
sum = (1/a2) + (4/a5) + (7/a8) + (10/a11) + ………. to n terms
View Answer254 Likes
- double series(double n) with one double argument and returns the sum of the series.
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
3, 6, 9, 12,
View Answer90 Likes
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
4, 8, 16, 32,
View Answer102 Likes
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
1.5, 3.0, 4.5, 6.0,
View Answer91 Likes
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
0, 7, 26,
View Answer128 Likes
Java Nested for Loops
Write a program in Java to print the series:
8, 88, 888, 8888, 88888, 888888
View Answer40 Likes
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
1, 9, 25, 49,
View Answer87 Likes
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
4, 16, 36, 64,
View Answer72 Likes