//TotaalDoubles.java

class TotaalDoubles {
   public static void main (String[] args){
      double totaal = 0.0;
      for (int nr=0; nr<args.length; nr++)
         System.out.println("Argument nr "+nr+": "+args[nr]);
//         totaal += Double.parseDouble (args[nr]);
      System.out.println("De som is " + totaal);
  }
}
