Advertisement
calcpage

C1X6_Sum10Rec.java

Sep 15th, 2011
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. //Sum10Rec.java MrG 2011.0915
  2. public class Sum10Rec
  3. {
  4.     public static void main(String[] args)
  5.     {
  6.         System.out.print("1.0/1+1.0/2+1.0/3+1.0/4+1.0/5+1.0/6+1.0/7+1.0/8+1.0/9+1.0/10 = ");
  7.         System.out.println(1.0/1+1.0/2+1.0/3+1.0/4+1.0/5+1.0/6+1.0/7+1.0/8+1.0/9+1.0/10);
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement