Skip to content

Commit

Permalink
Actualizando README
Browse files Browse the repository at this point in the history
  • Loading branch information
David-Blanc committed Dec 12, 2022
1 parent 999dfb3 commit 8f528fd
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 8 deletions.
10 changes: 10 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="C:/Users/rdavi/.m2/repository/com/googlecode/json-simple/json-simple/1.1.1/json-simple-1.1.1.jar" sourcepath="C:/Users/rdavi/.m2/repository/com/googlecode/json-simple/json-simple/1.1.1/json-simple-1.1.1-sources.jar">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="maven.groupId" value="com.googlecode.json-simple"/>
<attribute name="maven.artifactId" value="json-simple"/>
<attribute name="maven.version" value="1.1.1"/>
<attribute name="maven.scope" value="compile"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
Expand Down
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
CONVERSOR ALURA
<p align="center" >
<img src="https://user-images.githubusercontent.com/110739445/206951485-8cc1df63-20f7-4c18-85da-2ab9f01b5e02.gif">
</p>


# Challenge ONE | Conversor de Moneda
Challenge de Oracle Next Education y Alura: <b>Crea tu propio conversor de moneda</b>.

<br>

Detalles del proyecto:
- Además de divisas (USD, EUR y ARS) también convierte temperaturas (ºC, ºF y K).
- Los valores de las divisas se obtienen a través de dos diferencias APIs (por lo que los resultados obtenidos estarán relativamente actualizados).
- Se hace uso de Maven para la gestión de dependencias, particularmente para uso de la librería json.simple.

<br>

Puedes descargar el ejecutable desde [aquí]().
8 changes: 1 addition & 7 deletions src/principal/Principal.java
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
package principal;

import javax.swing.JOptionPane;

import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.JSONValue;

import conexion.Conexion;
import conversorMoneda.SeleccionConversion;
import conversorTemperatura.SeleccionConversionTemp;

Expand All @@ -25,7 +19,7 @@ public static void main(String[] args) {
JOptionPane.PLAIN_MESSAGE,
null,
opciones,
"Moneda");
"Temperatura");
if (cuadroOpciones != null) {
switch (cuadroOpciones) {
case "Temperatura": {
Expand Down

0 comments on commit 8f528fd

Please sign in to comment.