-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalculadorav1.java
More file actions
77 lines (71 loc) · 2.61 KB
/
calculadorav1.java
File metadata and controls
77 lines (71 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import java.util.Scanner;
public class calculadorav1 {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
calculadorav1 ca = new calculadorav1();
int opcion = 0;
boolean salir=true;
double x, y;
while (salir == true) {
System.out.println("\n Bienvenido a tu calculadora: ");
System.out.println("1.- Suma");
System.out.println("2.- Resta");
System.out.println("3.- Multiplicacion");
System.out.println("4.- Division");
System.out.println("5.- Salir");
System.out.println("Opcion: ");
opcion = sc.nextInt();
System.out.println("");
switch (opcion){
case 1:
System.out.println("Ingrese el primer numero: ");
x = sc.nextDouble();
System.out.println("Ingrese el segundo numero:");
y = sc.nextDouble();
System.out.println("");
System.out.println("Tu respuesta es: " + ca.suma(x, y));
break;
case 2:
System.out.println("Ingrese el primer numero: ");
x = sc.nextDouble();
System.out.println("Ingrese el segundo numero:");
y = sc.nextDouble();
System.out.println("");
System.out.println("Tu respuesta es: " + ca.resta(x, y));
break;
case 3:
System.out.println("Ingrese el primer numero: ");
x = sc.nextDouble();
System.out.println("Ingrese el segundo numero:");
y = sc.nextDouble();
System.out.println("");
System.out.println( "Tu Respuesta es: " + ca.multiplicacion(x, y));
break;
case 4:
System.out.println("Ingrese el primer numero: ");
x = sc.nextDouble();
System.out.println("Ingrese el segundo numero:");
y = sc.nextDouble();
System.out.println("");
System.out.println("Tu Respuesta es: " + ca.division(x, y));
break;
default:
System.out.println("Gracias por usar nuestra calculadora");
System.out.println("");
salir = false;
}
}
}
public double suma(double a, double b){
return a + b;
}
public double multiplicacion(double a, double b){
return a * b;
}
public double division(double a, double b){
return a / b;
}
public double resta(double a, double b){
return a - b;
}
}