Exercício 3.13.3 - Potência
Página 1 de 1
Exercício 3.13.3 - Potência
- Código:
import java.util.Scanner;
public class Potencia {
public static Scanner scanner = new Scanner(System.in);
public static void main(String[] args) {
System.out.println("Digite a base: ");
int base = scanner.nextInt();
System.out.println("Digite o expoente: ");
int expoente = scanner.nextInt();
int potencia = 1;
for (int i=1; i<=expoente; i++) {
potencia = potencia * base;
}
System.out.println(base + " ^ " + expoente + " = " + potencia);
}
}
Tópicos semelhantes
» Exercício 7.3 a 7.7
» Exercício 3.13.5 - MaiorMenor10Numeros
» Exercício 11.17
» Exercício 3.10.3 - 1 a 100 (while)
» Exercício 5.20
» Exercício 3.13.5 - MaiorMenor10Numeros
» Exercício 11.17
» Exercício 3.10.3 - 1 a 100 (while)
» Exercício 5.20
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos