IT Lesson
Pages
Home
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);
}
}
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.