Icon New game New game

Condicionales en Java

Fill in the Blanks

Ejercicios prácticos en Java sobre condicionales simples en Java

Download the paper version to play

73 times made

Created by

Colombia

Top 10 results

  1. 1
    02:14
    time
    90
    score
  2. 2
    02:19
    time
    85
    score
  3. 3
    00:49
    time
    80
    score
  4. 4
    Gustavo
    Gustavo
    01:25
    time
    60
    score
  5. 5
    00:38
    time
    20
    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

Condicionales en JavaOnline version

Ejercicios prácticos en Java sobre condicionales simples en Java

by Janio Sepulveda Fajardo
1

edad1 == edad2 edad1 / 2 == edad2 edad1 >= edad2 edad1 > edad2

Se solicita un programa que dada las edades de dos personas indique si la primer persona es mayor .

if ( ) {
System . out . println ( " Es mayor " ) ;
}

2

tinta < 10 tinta % 3 == 0 tinta < 9 tinta == 10

Se solicita un programa que indique al usuario cuando es momento de recargar el cartucho de tinta negra de su impresora . Teniendo en cuenta si el nivel es menor a 10 , ya es recomendable recargar su cartucho de tinta .

if ( ) {
System . out . println ( " Es recomendable recargar el cartucho " ) ;
}

3

dias < 365/2 dias == 366 dias > 366 365

Se solicita un programa que le permita al usuario saber si el año es bisiesto tan solo indicando el número de días totales del año .

if ( ) {
System . out . println ( " Es un año bisiesto " ) ;
}

4

ph >= 9 ph > 7 ph == 7 ph <= 8

Se solicita un programa para indicar si el ph del agua es neutro

if ( ) {
System . out . println ( " El ph es neutro " ) ;
}

5

velocidad < 50 velocidad == 80 velocidad > 80 velocidad < 100

Se solicita un programa que permita indicar si un automóvil va en exceso de velocidad , teniendo en cuenta que el limite de velocidad es de 80 km / h .

if ( ) {
System . out . println ( " Exceso de velocidad " ) ;
}

educaplay suscripción