Skip to content

Instantly share code, notes, and snippets.

@sanrodari
Forked from godie007/1
Created March 27, 2012 21:40
Show Gist options
  • Save sanrodari/2220584 to your computer and use it in GitHub Desktop.
Save sanrodari/2220584 to your computer and use it in GitHub Desktop.
Paradigma O.o
public class Ejemplos {
public static void main(String args[]){
String cadena = "los nenes";
if(cadena.length() >= 20){
System.out.println("la cadena tiene 20 o mas caracteres");
}
else{
System.out.println("la cadena tiene menos de 20 caracteres");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment