URI Problem (S Sequence) 1155:
S Sequence is a basic problem on URI online judge for novice problem solver.
You can find details on this Link.
/** * @Author : Muhammad Harun-Or-Roshid * @Date : Oct 21, 2016 * @Time : 10:27:56 PM */ public class Uri1155 { public static void main(String[] args) { double total = 0; for (int i = 1; i <= 100; i++) { double p = 1 / (double) i; total += p; } System.out.printf("%.2f\n", total); } }