Advertisement
Guest User

Untitled

a guest
Nov 21st, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. package prelim_lab5;
  2. import java.util.*;
  3.  
  4. public class Prelim_Lab5 {
  5.  
  6.  
  7. public static void main(String[] args) {
  8.  
  9. Scanner input = new Scanner(System.in);
  10.  
  11. System.out.print("Enter N: ");
  12. int index = input.nextInt();
  13.  
  14. double num = 1.0;
  15. double sum = 0;
  16. double n = 0;
  17. double num2;
  18.  
  19. while(n < index){
  20.  
  21. n++;
  22. num2 = num / n;
  23. sum += num2;
  24.  
  25. }
  26. System.out.print("Sum is: " + sum);
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement