Link will be apear in 30 seconds.
Well done! you have successfully gained access to Decrypted Link.
Question:

free upload file hosting
i need the answer quickly
Answer:
!this is the title of the program
program log1
implicit none
!declaring the variables
integer :: i,n
real :: sum,x
!Printing the statement to enter the value of x
PRINT *, 'Enter the value of X.'
!Reading the value of x from command line
READ *, x
!Printing the statement to enter the value of n
PRINT *,'Enter the value of n.'
!Reading the value of n from command line
READ *, n
!setting intial value of sum=x
sum=x
!using do loop to calculate our log(x+1) expension upto n terms
do i=2,n
sum=sum-((-x)**i)/i
print *, sum
!End do loop
end do
!end Program
end program log1