Skip to content

Instantly share code, notes, and snippets.

@godie007
Created March 27, 2012 21:28
Show Gist options
  • Save godie007/2220460 to your computer and use it in GitHub Desktop.
Save godie007/2220460 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 menos de 20 caracteres");
}
else{
System.out.println("la cadena tiene 20 o mas caracteres");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment