Software">
Nothing Special   »   [go: up one dir, main page]

Prog Avnz-Lab-Sesion-02

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

PROGRAMACION AVANZADA

LABORATORIO 02
Dr. Fernando Mendoza Apaza
Presentación:
• Correo Docente: MENDOZA APAZA FERNANDO
• fmendozaa@unac.edu.pe

• ASUNTO DE ENTREGA:
• Laboratorios:
PROG AVANZADA-90G-01L-SESION-01-Apepat Apemat Nombres
• Tareas:
PROG AVANZADA-01L-SESION-01-Apepat Apemat Nombres
• Practicas:
PROG AVANZADA-01L-PRACTICA01-Apepat Apemat Nombres
• Exámenes Parcial/Final:
PROG AVANZADA-01L-EXAMEN PARCIAL/FINAL-Apepat Apemat Nombres
SESIÓN 02
ENTORNO NETBEANS

PROGRAMACION AVANZADA
Plataforma Tecnológica

JDK: http://java.sun.com/javase/downloads/index.jsp
https://download.oracle.com/otn-
pub/java/jdk/12+33/312335d836a34c7c8bba9d963e26dc23/jdk-12_windows-
x64_bin.exe
https://https://netbeans.org/downloads/8.2/start.html?platform=windows&lang=es&opti
on=all
https://www.oracle.com/technetwork/es/java/javase/downloads/jdk-
netbeans-jsp-3413139-esa.html
http://download.oracle.com/otn-pub/java/jdk-nb/8u111-
8.2/jdk-8u111-nb-8_2-windows-i586.exe

http://download.oracle.com/otn-pub/java/jdk-nb/8u111-
8.2/jdk-8u111-nb-8_2-windows-x64.exe
Algoritmo cubo
//Declarar Variables
Definir A como Entero;
Definir B como Entero;
Definir C como Entero;
Definir Volumen como Real;

//Entrada de Datos Variables


Escribir "Ingrese el valor de A: ";
Leer A;
Escribir "Ingrese el valor de B: ";
Leer B;
Escribir "Ingrese el valor de C: ";
Leer C;

//Proceso cuerpo de programa


Volumen<-A*B*C;

//Salida del Proceso


Escribir "Volumen = ",Volumen;

FinAlgoritmo
package cubo;
import java.util.Scanner;
public class Cubo {
public static void main(String[] args) {
Scanner leer=new Scanner(System.in);
int Volumen;
System.out.println("Ingrese un Valor de A:");
int A=Integer.parseInt(leer.next());
System.out.println("Ingrese un Valor de B:");
int B=Integer.parseInt(leer.next());
System.out.println("Ingrese un Valor de C:");
int C=Integer.parseInt(leer.next());
Volumen = B*A*C;
System.out.println("El volumen es
:"+Volumen);
}
}
import java.util.Scanner;
public class Area {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);

//DECLARACION E INGRESO DE VARIABLES


Double A,B,C,AT,AR,AreaT;
System.out.println("Ingrese Base de Triangulo:");
B=Double.parseDouble(sc.next());
System.out.println("Ingrese Altura de Triangulo y Rect:");
A=Double.parseDouble(sc.next());
System.out.println("Ingrese Altura de Rectangulo:");
C=Double.parseDouble(sc.next());

//PROCESO DEL PROGRAMA


AT=B*(A-C)/2;
AR=B*C;
AreaT=AT+AR;

//SALIDA EN PANTALLA RESULTADOS


System.out.println("El Area de Triangulo es: "+AT);
System.out.println("El Area de Rectangulo es: "+AR);
System.out.println("El Area Total es: "+AreaT);
} }
EJERCICIO PARA
RESOLVER :
EJERCICIO 01:
import java.util.Scanner;
public class figura {
public static void main(String args[]) {
Scanner sc=new Scanner(System.in);
//DECLARACION E INGRESO DE VARIABLES
Double R,H,C,AT,AC,AreaT;
System.out.println("Ingrese Base de Triangulo Rect y Radio:");
R=Double.parseDouble(sc.next());
System.out.println("Ingrese Hipotenusa del Triangulo
Rectangulo:");
H=Double.parseDouble(sc.next());
//PROCESO DEL PROGRAMA
C=Math.sqrt(H*H-R*R);
AT=2*R*C/2;
AC=3.1416*R*R/2;
AreaT=AT+AC;
//SALIDA EN PANTALLA RESULTADOS
System.out.println("El Area de Triangulo es: "+AT);
System.out.println("El Area de Semicirculo es: "+AC);
System.out.println("El Area Total es: "+AreaT);
}
}
EJERCICIO 02:
EJERCICIO 03:
EJERCICIO 04:
EJERCICIO 05:
EJERCICIO 06:
Presentación:
• Correo Docente: MENDOZA APAZA FERNANDO
• fmendozaa@unac.edu.pe

• ASUNTO DE ENTREGA:
• Laboratorios:
PROG AVANZADA-90G-01L/02L-SESION-02-Apepat Apemat Nombres
• Tareas:
PROG AVANZADA-01L-SESION-01-Apepat Apemat Nombres
• Practicas:
PROG AVANZADA-01L-PRACTICA01-Apepat Apemat Nombres
• Exámenes Parcial/Final:
PROG AVANZADA-01L-EXAMEN PARCIAL/FINAL-Apepat Apemat Nombres
PROGRAMACION AVANZADA
LABORATORIO 02
Dr. Fernando Mendoza Apaza
PLAZO DE ENTREGA: 14 MAYO
11:59:59 PM

También podría gustarte