Skip to content

Instantly share code, notes, and snippets.

View godie007's full-sized avatar

Diego Fernando Echevery godie007

View GitHub Profile
@godie007
godie007 / Ejercicio.java
Created March 19, 2012 17:45 — forked from sanrodari/Ejercicio.java
Tercer ejercicio
package com.example;
public class Ejercicio {
public static void main(String[] args)
{
int a, b, c, d;
a = 5;
b = 2;
@godie007
godie007 / Ejercicio.java
Created March 19, 2012 20:14 — forked from sanrodari/Ejercicio.java
Tercer ejercicio
package com.example;
public class Ejercicio {
public static void main(String[] args)
{
int a, b, c, d;
a = 5;
b = 2;
import javax.swing.*;
/**
* programa que calcula 2 numeros
* enteros ingresados por el usuario
* @author DiegoFenandoEcheverry (Godie007)
*/
public class Sumatoria {
@godie007
godie007 / contrasena.html
Created May 5, 2012 15:58 — forked from sanrodari/contrasena.html
Para poner un pass ficti a blogger
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;
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;