IT Lesson
Pages
Home
Showing posts with label
series
.
Show all posts
Showing posts with label
series
.
Show all posts
Tuesday, February 17, 2015
Java program to find sum of harmonic series 1 1 2 1 3 1 4 1 5 1 n
class Harmonic
{
public static void main(String...s)
{
int n,i;
float sum=0;
n=Integer.parseInt(s[0]);
for(i=1;i<=n;i++)
{
sum=sum+(float)1/i;
}
System.out.println("
Sum="+sum);
}
}
Read more »
Older Posts
Home
Subscribe to:
Posts (Atom)