Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Programa-3 Tarea-1 PDF

Descargar como pdf o txt
Descargar como pdf o txt
Está en la página 1de 10

UNIVERSIDAD PRIVADA

“FRANZ TAMAYO”
Ingeniería de Sistemas

Instalación de herramientas necesarias

AUTOR:

Marco Antonio Calle Vaquiata SIS9929317

MATERIA:

Programación III

DOCENTE:

Ing. Juan Gabriel Lazcano Balanza

El Alto – Bolivia 2023

1
1: buscamos el apache

2:buscamos la version para nuestro windonws

2
3: practicamos un poco en google con java

4: una vez descargado lo instalamos

3
5:una vez instalado ponemos siguiente

4
6: abrimos el apache netbains

7: dejamos en vacío el apache

5
8: vamos donde file y abrimos nuevo proyecto

9:ponemos nombre al proyecto+

6
10: hacemos el primer ejercicio- VARIABLES

11: probamos el codigo

7
CODIGO:

package com.unifranz.variables;

public class VARIABLES {

public static void main(String[] args) {


var floatVar=1000.10f;
System.out.println("floarvar = "+floatVar);
System.out.println("bits tipo float = "+Float.SIZE);
System.out.println("bits tipo float = "+Float.BYTES);
System.out.println("valor minimo tipo float = "+Float.MIN_VALUE);
System.out.println("valor maximo tipo float = "+Float.MAX_VALUE);

var doublevar =100D;


System.out.println("doublevar = "+doublevar);
System.out.println("bits tipo double = "+Double.SIZE);
System.out.println("bits tipo double = "+Double.BYTES);
System.out.println("valor minimo tipo double = "+Double.MIN_VALUE);
System.out.println("valor maximo tipo double = "+Double .MAX_VALUE);

12: exportamos el codigo

8
13: hacemos el 2 ejercicio- CARACTERES

14: hacemos el codigo

9
CODIGO

package com.unifranz.caractereces;

+public class CARACTERECES {

public static void main(String[] args) {

System.out.println("bits tipo CHAR = "+Character.SIZE);


System.out.println("bytes tipo float = "+Character.BYTES);
System.out.println("valor minimo tipo charr = "+Character.MIN_VALUE);
System.out.println("valor maximo tipo char = "+Character.MAX_VALUE);

var varChar="\u0021";
System.out.println("varChar = "+varChar);

var varCharDecimal=33;
System.out.println("varCharDecimal = "+varCharDecimal);
var varCharSimbolo="I";
System.out.println("varCharSimbolo = "+varCharSimbolo);

10

También podría gustarte