Printing as a calculator
Computers excel at performing calculations instantly. Rather than computing values by hand, you can let Java do the math for you and display the results. Let's see this in action!
Diese Übung ist Teil des Kurses
Introduction to Java
Anleitung zur Übung
- Print the result of
1+3to the output.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
class Calculator {
public static void main(String[] args) {
// Print the result of 1+3
System.out.println(____);
}
}