ComeçarComece de graça

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 exercício faz parte do curso

Introduction to Java

Ver curso

Instruções do exercício

  • Print the result of 1+3 to the output.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

class Calculator {
	public static void main(String[] args) {
    	// Print the result of 1+3
        System.out.println(____ + ____);
    }
}
Editar e executar o código