-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ejemplo30.java
51 lines (49 loc) · 1.04 KB
/
Ejemplo30.java
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
import hsa.Console;
public class Ejemplo30
{
static Console c;
public static void main (String[] args)
{
c = new Console ();
int b;
String nombre, nx;
float precio, px;
char opcion;
b = 0;
px = 0;
nx = "";
do
{
c.clear ();
c.setCursor (3, 15);
c.print ("Carga de datos");
c.setCursor (4, 15);
c.print ("--------------");
c.setCursor (6, 10);
c.print ("Ingrese Nombre de Producto: ");
nombre = c.readLine ();
c.setCursor (9, 10);
c.print ("Ingrese Precio del Producto: ");
precio = c.readFloat ();
if (b == 0)
{
b = 1;
nx = nombre;
px = precio;
}
if (precio < px)
{
nx = nombre;
px = precio;
}
c.setCursor (15, 10);
c.print ("Ingresa otro juego de datos (S / N): ");
opcion = c.readChar ();
}
while (opcion == 'S' || opcion == 's');
c.setCursor (18, 10);
c.print ("El producto de menor precio es: " + nx);
c.setCursor (19, 10);
c.print ("Su precio es de: $ " + px);
}
}