Icon New game New game

programacion

Fill in the Blanks

(11)
programacion

Download the paper version to play

Recommended age: 15 years old
174 times made

Created by

Spain

Top 10 results

  1. 1
    01:02
    time
    100
    score
  2. 2
    01:30
    time
    100
    score
  3. 3
    01:38
    time
    100
    score
  4. 4
    02:31
    time
    100
    score
  5. 5
    02:44
    time
    100
    score
  6. 6
    03:14
    time
    100
    score
  7. 7
    18:52
    time
    100
    score
  8. 8
    04:02
    time
    99
    score
  9. 9
    06:27
    time
    99
    score
  10. 10
    04:52
    time
    91
    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

programacionOnline version

programacion

by JOSEFINA COVARRUBIAS
1

Scanner area int 2 out main b import raiz println System num out out num1 nextInt num2 System a res Math nextInt nextInt

COMPLETA EL PROGRAMA HOLA MUNDO
package estructuras_secuenciales ;
public class Hola_mundo {
public static void ( String [ ] args )
{
. . ( " hola mundo " ) ;
}

}

SUMA DE DOS NÚMEROS
package estructuras_secuenciales ;

import java . util . Scanner ;

public class suma_dos_numeros {
public static void main ( String [ ] args ) {
Scanner teclado = new Scanner ( System . in ) ;

int , , res ;
System . out . println ( " ingrese un numero " ) ;
num1 = teclado . ( ) ;

System . out . println ( " ingrese otro numero " ) ;
num2 = teclado . ( ) ;

= num1 + num2 ;

System . out . println ( " la suma es " + res ) ;

}

}


AREA DE UN TRIÁNGULO ESCALENO
package estructuras_secuenciales ;


import static java . lang . . sqrt ;
import java . util . Scanner ;

public class triangulo_escaleno {

public static void main ( String [ ] args ) {
Scanner teclado = new Scanner ( System . in ) ;

int a , b , c , s , area ;

System . out . println ( " ingrese el valor del lado a " ) ;
= teclado . nextInt ( ) ;

System . out . println ( " ingrese el valor del lado b " ) ;
= teclado . nextInt ( ) ;

System . out . println ( " ingrese el valor del lado c " ) ;
c = teclado . nextInt ( ) ;

s = ( a + b + c ) / ;
= ( int ) sqrt ( s * ( s - a ) * ( s - b ) * ( s - c ) ) ;

. . println ( " el area del triangulo escaleno es " + area ) ;


}
}

/ / RAIZ CUADRADA DE UN NUMERO
package estructuras_secuenciales ;

import static java . lang . Math . sqrt ;
java . util . ;

public class raiz_cuadrada {

public static void main ( String [ ] args ) {
Scanner teclado = new Scanner ( System . in ) ;

num , raiz ;

System . . println ( " ingrese el número " ) ;
num = teclado . ( ) ;

raiz = ( int ) sqrt ( ) ;

System . out . println ( " la raiz cuadrada de " + num + " es " + ) ;

}
}

educaplay suscripción