JAVA: Game “Catch a drop”

“Catch a drop” is a simple game that you can write in JAVA. This can be your first project for your portfolio. To download the simple game, press Download. You would need at least Java 11.   [java collapse="false"] package ru.greklena; import javax.imageio.ImageIO; import javax.swing.*; import java.awt.*; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import java.io.IOException; public class […]

JAVA: Conditionals and Loops

if statement int x = 7; if (x < 42) { System.out.println("Hello"); } if…else statement int age = 30; if (age < 16) { System.out.println("Too Young"); } else { System.out.println("Welcome!"); } //Outputs "Welcome!" else if statement int age = 25; if(age <= 0) { System.out.println("Error"); } else if(age <= 16) { System.out.println("Too Young"); } else […]

JAVA & OOP Basics (Notes)

Definitions & Abbreviations: JDK (Java Development Kit): Download JVM (Java Virtual Machine) IDE (Integrated Development Environment), e.g. IntelliJ IDEA: Download & Help OOP (Object-Oriented Programming) UML (Unified Modeling Language) UI (User Interface) API (Application Programming Interface) JSR (Java Specification Request) разрабатываются JCP (Java Community Process): список JSR W3C (World Wide Web Consortium) is the main international standards organization […]