Tag: Java

Java is a high-level, object-oriented programming language known for its platform independence, robustness, and wide range of applications in software development, particularly for web and enterprise applications.

  • brew: install Java on macOS

    brew: install Java on macOS

    Written by

    in ,

    The following steps will guide you through the installation of Java on macOS. First, check the available Java related formulas: Currently, there are two different version of Java: java and java11. To check the version of both, you can use the following commands: Depending on your requirements, you can install one of the above. For…

    Read more

  • Java: Zufallszahlen in einem bestimmten Bereich erstellen

    Java: Zufallszahlen in einem bestimmten Bereich erstellen

    Written by

    in

    Angenommen, man möchte mit Java eine Zufallszahl innerhalb eines bestimmten Zahlenbereiches definieren. In den folgenden Beispielen soll eine Zufallszahl zwischen 5 (inklusive) und 15 (inklusive) erstellt werden. Hierfür definiere ich zunächst zwei Variablen, die in den nachfolgenden Code-Zeilen die Grenzwerte für Maximum und Minimum beinhalten: Zufallszahl mit Math.random() Die Methode Math.random() bietet eine Möglichkeit, um…

    Read more