Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Write a java program to find out the sum of harmonic series :
1 + ½ + 1/3 + ……… up to nth term , for any value of n.

Answer Posted / s

package com.adder;

import java.math.BigDecimal;
import java.math.RoundingMode;

public class GeneralJava {

/**
* @param args
*/
public static void main(String[] args) {
System.out.println(new GeneralJava().process
(10));
}

private double process(int n) {

BigDecimal retVal = BigDecimal.ZERO;

for (int i=1; i<= n; i++) {

BigDecimal adder =
BigDecimal.ONE.divide(BigDecimal.valueOf(i),10,
RoundingMode.HALF_UP);

retVal = retVal.add(adder);

}

return retVal.doubleValue();
}
}

Is This Answer Correct ?    4 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

To what value is a variable of the string type automatically initialized?

1136


How would you reatach detached objects to a session when the same object has already been loaded into the session?

1213


Name three subclasses of the component class?

1110


What is the relationship between local interfaces and container-managed relationships?

1127


Difference between new operator and class.forname().newinstance()?

1135


Where we can write Rmi registry in the code, without having to write it at the command prompt?

2771


Describe activation process?

2662


Which javutil classes and interfaces support event handling?

1046


Do I need to import javlang package any time? Why ?

1091


What are various types of class loaders used by jvm?

1001


Explain about thread synchronization inside a monitor?

2547


How are the elements of a cardlayout organized?

1085


What is table mutation and how do you avoid it?

2469


What is mdb and what is the special feature of that?

1057


If I wanted to use a solarisui for just a jtabbedpane, and the metal ui for everything else, how would I do that?

1068