-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex007.java
40 lines (30 loc) · 1.01 KB
/
ex007.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
package listaexercicios02;
import java.util.Scanner;
public class ex007 {
public static void main(String[] args) {
float num = 0, menorValor = 0, maiorValor = 0;
Scanner input = new Scanner(System.in);
for(int i = 1; i<=10; i++) {
do {
System.out.print("Digite o valor do produto: ");
num = input.nextFloat();
if(num <= 0) {
System.out.println("Valor inválido, digite novamente.");
}
} while(num <= 0);
if(i == 1) {
menorValor = num;
maiorValor = num;
} else {
if(num < menorValor) {
menorValor = num;
}
if(num > maiorValor) {
maiorValor = num;
}
}
}
System.out.printf("Produto de maior valor: R$%.2f\n", maiorValor);
System.out.printf("Produto de menor valor: R$%.2f", menorValor);
}
}