Created
October 26, 2024 18:42
-
-
Save je4npw/087f103f17c10ef4bf1c1bc0a1484495 to your computer and use it in GitHub Desktop.
Trabalho para portfólio de Programação Orientada a Objetos Unopar Ciências da Computação 4⁰ Semestre
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license | |
*/ | |
package com.mycompany.calcula; | |
import java.util.Scanner; | |
/** | |
* | |
* @author je4npw | |
*/ | |
public class Calcula { | |
public static void main(String[] args) { | |
Scanner scanner; | |
scanner = new Scanner(System.in); | |
System.out.print("Digite o primeiro número: "); | |
int numero1 = scanner.nextInt(); | |
System.out.print("Digite o segundo número: "); | |
int numero2 = scanner.nextInt(); | |
Calculadora calculadora = new Calculadora(numero1, numero2); | |
int resultado = calculadora.somar(); | |
System.out.println("A soma é: " + resultado); | |
scanner.close(); // Fechando o Scanner para liberar recursos | |
} | |
} | |
class Calculadora { | |
private final int numero1; | |
private final int numero2; | |
// Construtor para inicializar os números | |
public Calculadora(int numero1, int numero2) { | |
this.numero1 = numero1; | |
this.numero2 = numero2; | |
} | |
// Método para realizar a soma | |
public int somar() { | |
return numero1 + numero2; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment