You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
345 B
C

#include<stdio.h>
#include<conio.h>
void main() {
int n;
float i, sum, t;
printf("1+1/2+1/3+......+1/n\n");
printf("Enter the value of n\n");
scanf("%d",&
amp;
n);
sum=0;
for (i=1;i<=n;i++) {
t=1/i;
sum=sum+t;
}
printf("%f",sum);
getch();
}