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.
Este ejercicio forma parte del curso
Introduction to Java
Instrucciones del ejercicio
- Print the result of
1+3
to the output.
Ejercicio interactivo práctico
Prueba este ejercicio completando el código de muestra.
class Calculator {
public static void main(String[] args) {
// Print the result of 1+3
System.out.println(____ + ____);
}
}