WTF! INTENTA CON ESTE!
Imei : 012529001162746
Code : 05807215
Imei : 012529001162746
Code : 05807215
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menúecho "<table border='1'>";
echo "<tr><th>Nombre</th><th>XX</th><th>Falla</th><th>Estatus</th></tr>";
while ($row = mysql_fetch_row($result)){
echo "<tr>";
echo "<td width=100>".$row[0]."</td>";
echo "<td width=20>".$row[1]."</td>";
echo "<td width=100>".$row[2]."</td>";
echo "<td width=20>".$row[3]."</td>";
echo "</tr>";
}
echo "</table>";
String numero = JOptionPane.showInputDialog("Ingresa un numero");
System.out.println("INGRESASTE EL NUMERO: "+numero);
System.out.println("\nIMPRIMENDO EL NUMERO AL REVES: "+invertido(numero));
if(numero.compareTo(invertido(numero))==0)
System.out.println("\nSI ES UN NUMERO CAPICUA");
else
System.out.println("\nNO ES UN NUMERO CAPICUA");
private static String invertido(String numero) {
String result = "";
for (int i = numero.length() - 1; i >= 0; i--)
{
result = result + numero.substring(i, i+1);
}
return result;
}
public class HelloWorld{
public static void main(String []args){
String numero = "1234";
System.out.println("INGRESASTE EL NUMERO: " + numero);
System.out.println("IMPRIMENDO EL NUMERO AL REVES: " + invertido(numero));
if(numero.compareTo(invertido(numero))==0)
System.out.println("\nSI ES UN NUMERO CAPICUA");
else
System.out.println("\nNO ES UN NUMERO CAPICUA");
}
private static String invertido(String numero){
String result = "";
for (int i = numero.length() - 1; i >= 0; i--)
{
result = result + numero.substring(i, i+1);
}
return result;
}
}