Skip to content

Commit

Permalink
Merge pull request #155 from vicitel/challenges/1-cubo-simples/java/v…
Browse files Browse the repository at this point in the history
…icitel

Finalizando o desafio 1
  • Loading branch information
lanjoni authored Oct 4, 2023
2 parents fc9afa2 + d5f4e4f commit d864659
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 d864659

Please sign in to comment.