5.6. Der endgültige Code für EinfachesDotCom und EinfachesDotComTestlauf
public class EinfachesDotComTestlauf { public static void main (String[] args) { EinfachesDotCom dot = new EinfachesDotCom(); int[] orte = {2,3,4}; dot.setZellorte(orte); String tipp = "2"; String ergebnis = dot.prüfDich(tipp); } }
public class EinfachesDotCom { int[] zellorte; int anzahlTreffer; public void setZellorte(int[] orte) { zellorte = orte; } public String prüfDich(String stringTipp) { int tipp = Integer.parseInt(stringTipp); String ergebnis = "Vorbei"; for (int zelle : zellorte) { if (tipp == zelle) { ergebnis = "Treffer"; anzahlTreffer++; break; } // if-Ende } // for-Ende if (anzahlTreffer == zellorte.length) { ergebnis = "Versenkt"; } // if-Ende System.out.println(ergebnis); ...
Get Java™ von Kopf bis Fuß now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.