This file contains hidden or 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
| package com.example; | |
| public class Ejercicio { | |
| public static void main(String[] args) | |
| { | |
| int a, b, c, d; | |
| a = 5; | |
| b = 2; |
This file contains hidden or 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
| package com.example; | |
| public class Ejercicio { | |
| public static void main(String[] args) | |
| { | |
| int a, b, c, d; | |
| a = 5; | |
| b = 2; |
This file contains hidden or 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
| import javax.swing.*; | |
| /** | |
| * programa que calcula 2 numeros | |
| * enteros ingresados por el usuario | |
| * @author DiegoFenandoEcheverry (Godie007) | |
| */ | |
| public class Sumatoria { |
This file contains hidden or 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
| Aca va el contenido | |
| <script> | |
| document.write("\<script src='http://code.jquery.com/jquery-latest.min.js' type='text/javascript'>\<\/script>"); | |
| </script> | |
| <script> | |
| $(function(){ | |
| $('#content-wrapper').hide(); | |
| var autenticado = false; | |
This file contains hidden or 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
| package Trabajo; | |
| public class DecimalAOctal { | |
| public static void main(String[] args) { | |
| octalADecimal("20"); | |
| } | |
| public static void octalADecimal(String base) { | |
| String cadenaInver = ""; | |
| int b = 0; | |
| double c = 0; |