import java.util.*; public class Lab6 { public static long sumOfMultiples(int limit) { long sum = 0; for (int i=1; i counts = new HashMap<>(); counts.put('A', 0); counts.put('C', 0); counts.put('G', 0); counts.put('T', 0); for (int i=0; i map = countDNA("ATGCTTCAGAAAGGTCTTACG"); for (char c : map.keySet()) { System.out.println(c+": "+map.get(c)); } } } }