Icon Crear Crear

PROGRAMACION EN JAVA

Completar frases

(1)
ESTRUCTURA BÁSICA DE UN PROGRAMA EN JAVA

Descarga la versión para jugar en papel

Edad recomendada: 16 años
7 veces realizada

Creada por

México

Top 10 resultados

  1. 1
    05:16
    tiempo
    100
    puntuacion
  2. 2
    05:17
    tiempo
    100
    puntuacion
¿Quieres aparecer en el Top 10 de este juego? para identificarte.
Crea tu propio juego gratis desde nuestro creador de juegos
Compite contra tus amigos para ver quien consigue la mejor puntuación en esta actividad

Top juegos

  1. tiempo
    puntuacion
  1. tiempo
    puntuacion
tiempo
puntuacion
tiempo
puntuacion
game-icon

Completar

PROGRAMACION EN JAVA

ESTRUCTURA BÁSICA DE UN PROGRAMA EN JAVA

Leticia Caballero
1

r println static System b d d System println m System println out main class out m out String s println s out println a println println r

/ / Programa No . 1 : OPERACIONES BASICAS + - * /
/ / FECHA : 28 / 01 / 2021
/ / LETICIA CABALLERO ROBLES

public OPERACIONES { / / declarando el objeto
public void ( args [ ] ) { / / funcion principal del programa

int = 9 , = 3 , s , r , d , m ;

= a + b ;
= a - b ;
= a / b ;
= a * b ;

System . . ( " Resultado de las operaciones " ) ;
. out . ( " - - - - - - - - - - - - - - - - - - - - - - - - - - - - " ) ;
System . . ( " Suma = " + ) ;
. out . ( " Resta = " + ) ;
System . . ( " División = " + ) ;
. out . ( " Multiplicación = " + ) ;
System . . ( " - - - - - - - - - - - - - - - - - - - - - - - - - - - - " ) ;
}
}