Icon New game New game

Selecciona el código que falta en cada línea

Fill in the Blanks

(4)
Selecciona el código correcto que falta en cada linea, si fallaste puedes tener intentarlo nuevamente

Download the paper version to play

91 times made

Created by

Spain

Top 10 results

  1. 1
    JOSUE RUBIEL REBOLLEDO PEREZ
    JOSUE RUBIEL REBOLLEDO PEREZ
    00:24
    time
    100
    score
  2. 2
    Fátima A. Domínguez Barron
    Fátima A. Domínguez Barron
    00:33
    time
    100
    score
  3. 3
    00:47
    time
    100
    score
  4. 4
    00:57
    time
    100
    score
  5. 5
    01:07
    time
    100
    score
  6. 6
    01:11
    time
    100
    score
  7. 7
    01:44
    time
    100
    score
  8. 8
    20:31
    time
    100
    score
  9. 9
    02:03
    time
    78
    score
Do you want to stay in the Top 10 of this game? to identify yourself.
Make your own free game from our game creator
Compete against your friends to see who gets the best score in this game

Top Games

  1. time
    score
  1. time
    score
time
score
time
score
 
game-icon

Fill in the Blanks

Selecciona el código que falta en cada líneaOnline version

Selecciona el código correcto que falta en cada linea, si fallaste puedes tener intentarlo nuevamente

by JOSEFINA COVARRUBIAS
1

/ / COMPARA DOS NÚMEROS Y DETERMINA CUAL ES MAYOR
package PROGRAMAS_SELECTIVOS ;
import java . util . Scanner ;
public class COMPARA_DOS_NUMEROS {
public static void main ( String [ ] args ) {
Scanner teclad = new Scanner ( System . in ) ;
int nume1 , nume2 ;
System . out . println ( " Ingrese un numero entero " ) ;
= teclad . nextInt ( ) ;
System . out . println ( " Ingrese otro numero " ) ;
= teclad . nextInt ( ) ;
( nume1>nume2 )
{
System . out . println ( " " + ) ;
}
else if ( nume2>nume1 )
{
System . out . println ( " el mayor es el numero " + ) ;
}
}
}


/ / ELEVA UN NÚMERO A UNA POTENCIA
package PROGRAMAS_SECUENCIALES ;
import static java . lang . . pow ;
import java . util . Scanner ;
public class potencia {
public static void main ( String [ ] arg ) {
Scanner teclado = new Scanner ( System . in ) ;
int numero , potencia , ;
. . println ( " Ingrese un numero entero " ) ;
numero = teclado . nextInt ( ) ;
System . out . println ( " Ingresea que potencia desea elevarlo " ) ;
= teclado . nextInt ( ) ;
resultado = ( int ) ( numero , potencia ) ;
System . out . println ( " el numero " + numero +
" elevado a la potecia " + potencia +
" es igual a " + resultado ) ;
}
}

educaplay suscripción