Printing as a calculator
Java can be used for quick calculations, just like a calculator! Instead of manually computing values, you can use System.out.println()
to display the result of an arithmetic operation.
Complete the program to print the sum of two numbers.
Diese Übung ist Teil des Kurses
Introduction to Java
Anleitung zur Übung
- Print the result of
1+3
to 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(____ + ____);
}
}