Skip to content

Commit

Permalink
Finalizando o desafio 1
Browse files Browse the repository at this point in the history
  • Loading branch information
vicitel committed Oct 4, 2023
1 parent d087392 commit d5f4e4f
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
12 changes: 12 additions & 0 deletions challenges/1-cubo-simples/java/vicitel/CuboSimples.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import java.util.Scanner;

public class CuboSimples {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);

double numeroBase = input.nextDouble();
double numeroExpoente = 3;

System.out.println(Math.pow(numeroBase, numeroExpoente));
}
}
23 changes: 23 additions & 0 deletions challenges/1-cubo-simples/java/vicitel/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Submissão de Exercicio

**Exercicio:** 1 - Cubo Simples

**Nickname:** vicitel

**Nível Técnico:** Estudante

**Empresa:** Nenhuma

**Twitter**: https://twitter.com/lerissia

**Dificuldade de Resolução:** Baixa

**Comentários:** s/c

**Como rodar o desafio**:

Use os comandos abaixo dentro do diretório do projeto:
```bash
javac CuboSimples.java
java CuboSimples
```

0 comments on commit d5f4e4f

Please sign in to comment.