Biorhythms: Difference between revisions

11 bytes removed ,  11 months ago
m
Minor adjustments to code.
(New post.)
m (Minor adjustments to code.)
Line 1,396:
 
public static void main(String[] aArgs) {
List<List<String>> datePairs = List.of(
List.of( "1943-03-09", "1972-07-11" ),
List.of( "1809-01-12", "1863-11-19" ),
Line 1,403:
for ( List<String> datePair : datePairs ) {
biorhythms(datePair);
System.out.println();
}
}
Line 1,437 ⟶ 1,436:
}
System.out.println(cycle + " day " + positionInCycle + ": " + description);
}
System.out.println();
}
908

edits