Commit b63e6064 by Pedro

Agregué los archivos de la tarea!

parents
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author user
*/
public class Ejercicio01 {
public static void main(String[] args) {
int a = 1;
int b = 1;
int suma = a+b;
int resta = a-b;
int multiplicacion = a*b;
int division = a/b;
int modulo = a%b;
System.out.println("Valores de variales: " + a+" y " + b);
System.out.println("Suma: " + suma);
System.out.println("Resta: " + resta);
System.out.println("Multiplicacion: " + multiplicacion);
System.out.println("División: " + division);
System.out.println("Módulo: " + modulo);
}
}
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author user
*/
public class Ejercicio02 {
public static void main(String[] args) {
int a;
int b;
a=2;
for (int i = 1; i <= 3 ; i++) {
b=i;
System.out.println("El valor de A es: " + a);
System.out.println("El valor de B es: " + b);
if(a>b){
System.out.println("A es mayor a B");
}
else if(a<b){
System.out.println("A es menor a B");
}
else{
System.out.println("A y B son iguales");
}
System.out.println("");
}
}
}
import java.util.Scanner;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author user
*/
public class Ejercicio03 {
public static void main(String[] args) {
String nombre = new String();
Scanner sc = new Scanner(System.in);
nombre = sc.nextLine();
System.out.println("Bienvenido " + nombre + "!");
}
}
import java.util.Scanner;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author user
*/
public class Ejercicio04 {
public static void main(String[] args) {
String nombre = new String();
System.out.print("Introduzca su nombre porfis: ");
Scanner sc = new Scanner(System.in);
nombre = sc.nextLine();
System.out.println("");
System.out.println("Bienvenido " + nombre + "!");
}
}
import java.util.Scanner;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author user
*/
public class Ejercicio05 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("Introduzca un número para saber si es divisible"
+ " entre 2: ");
int n = sc.nextInt();
System.out.println("");
if(n%2==0){
System.out.println("Es divisible entre 2!");
}
else{
System.out.println("No es divisible entre 2!");
}
}
}
import java.util.Scanner;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author user
*/
public class Ejercicio06 {
public static void main(String[] args) {
float iva = 10/100f;
Scanner sc = new Scanner(System.in);
System.out.print("Introduzca el precio de un producto: ");
float precio = sc.nextFloat();
System.out.println("");
float precioFinal = precio + (precio*iva);
System.out.println("El precio fnal del producto es: " + precioFinal);
}
}
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author user
*/
public class Ejercicio07 {
public static void main(String[] args) {
for (int i = 1; i <= 100; i++) {
if(i%2==0 || i%3==0){
System.out.print(" | "+i);
}
}
System.out.println(" |");
}
}
import java.util.Scanner;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author user
*/
public class Ejercicio08 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n;
System.out.println("");
do {
System.out.print("Ingrese un numero mayor o igual a 0: ");
n = sc.nextInt();
System.out.println("");
} while (!(n>=0));
System.out.println("El número que pasó la prueba es: " + n);
}
}
import java.util.Scanner;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author user
*/
public class Ejercicio09 {
public static void main(String[] args) {
String contraseña = new String("luque");
Scanner sc = new Scanner(System.in);
System.out.print("Introduzca una contraseña: ");
String input = sc.nextLine();
//System.out.println("");
for(int i=0; i<2; i++){
if(!es_correcto(contraseña, input)){
System.out.print("Vuelve a intentar: ");
input = sc.nextLine();
}
else{
System.out.println("Correcto!");
return;
}
}
System.out.println("Fallaste jaja!!");
}
public static boolean es_correcto(String contraseña, String input){
if(contraseña.compareTo(input) == 0){
return true;
}
return false;
}
}
import java.util.Scanner;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author user
*/
public class Ejercicio10 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String[] dias_laborales = new String[5];
String input = new String();
dias_laborales[0] = "lunes";
dias_laborales[1] = "martes";
dias_laborales[2] = "miercoles";
dias_laborales[3] = "jueves";
dias_laborales[4] = "viernes";
System.out.print("Introduzca un dia: ");
input = sc.nextLine();
System.out.println("");
for (int i = 0; i < 5; i++) {
if(input.compareTo(dias_laborales[i]) == 0){
System.out.println("Es laboral!");
return;
}
}
System.out.println("No es laboral!");
}
}
# Instrucciones para Compilar y Ejecutar
* En la terminal de linux, posicionarse en la carpeta donde se encuentran los archivos **.java**
* En la terminal, escribir **javac Ejercicio01.java** para compilar el ejercicio 1 por ejemplo
* En la misma carpeta se generará un archivo con extension **.class**, que es el archivo compilado.
* Para ejecutar el archivo **Ejercicio01.class/** por ejemplo, se debe escribir en la terminal **java Ejercicio01** (nótese que no se escribe la extensión **.class**)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment