document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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. }
');