Crear juego

programacion

Completar frases

(11)
programacion

Descarga la versión para jugar en papel

programación orientada a objetos Edad recomendada: 15 años
174 veces realizada

Creada por

Top 10 resultados

  1. 1
    PORFIRIO DAVID FRIJOL LUGO
    01:02
    tiempo
    100
    puntuacion
  2. 2
    Jaaziel Josue Zúñiga Castañón
    01:30
    tiempo
    100
    puntuacion
  3. 3
    Brayan martin  Alvarado villela
    01:38
    tiempo
    100
    puntuacion
  4. 4
    MARISOL ZARAGOZA VAQUERO
    02:31
    tiempo
    100
    puntuacion
  5. 5
    Araceli Cerro LOPEZ
    02:44
    tiempo
    100
    puntuacion
  6. 6
    Jose Samuel Quezada Simon
    03:14
    tiempo
    100
    puntuacion
  7. 7
    ANDRES MANUEL HUERTA MELCHOR
    18:52
    tiempo
    100
    puntuacion
  8. 8
    Pablo Zapata
    04:02
    tiempo
    99
    puntuacion
  9. 9
    CRISTIAN EDUARDO PEREZ PEREZ
    06:27
    tiempo
    99
    puntuacion
  10. 10
    RICARDO DE LA CRUZ QUITERIO
    04:52
    tiempo
    91
    puntuacion
¿Quieres aparecer en el Top 10 de este juego? Inicia sesión para identificarte.
Crea tu propio juego gratis desde nuestro creador de juegos
Crear completar frases
Compite contra tus amigos para ver quien consigue la mejor puntuación en esta actividad
Crear reto
  1. tiempo
    puntuacion
  1. tiempo
    puntuacion
tiempo
puntuacion
tiempo
puntuacion
game-icon

Completar

programacion

programacion

JOSEFINA COVARRUBIAS
1

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

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 " + ) ;

}
}