Java Series Programs
Java User Defined Methods
Design a class to overload a function 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 Answer3 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 Answer3 Likes
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
4, 8, 16, 32,
View Answer1 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 Answer3 Likes
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
0, 7, 26,
View Answer1 Likes
Java Nested for Loops
Write a program in Java to print the series:
8, 88, 888, 8888, 88888, 888888
View Answer2 Likes
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
1, 9, 25, 49,
View Answer2 Likes
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
4, 16, 36, 64,
View Answer3 Likes
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
0, 3, 8, 15,
View Answer2 Likes
Java User Defined Methods
Design a class to overload a function sumSeries() as follows:
(i) void sumSeries(int n, double x): with one integer argument and one double argument to find and display the sum of the series given below:
(ii) void sumSeries(): to find and display the sum of the following series:
View Answer1 Likes
Showing 11 - 20 of 59 Questions