-
Notifications
You must be signed in to change notification settings - Fork 127
/
MultiplicacaoSimples.java
50 lines (37 loc) · 1.29 KB
/
MultiplicacaoSimples.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
// Multiplicação Simples
/* Você receberá dois valores inteiros. Faça a leitura e em seguida calcule
o produto entre estes dois valores. Atribua esta operação à variável PROD,
mostrando está de acordo com a mensagem de saída esperada (exemplo abaixo).
- Entrada
A entrada contém 2 valores inteiros.
- Saída
Exiba a variável PROD conforme exemplo abaixo, tendo obrigatoriamente um
espaço em branco antes e depois da igualdade. */
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.util.StringTokenizer;
public class MultiplicacaoSimples {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int a = Integer.parseInt(st.nextToken());
st = new StringTokenizer(br.readLine());
int b = Integer.parseInt(st.nextToken());
int total = a * b;
System.out.println("PROD = " + total);
}
}
// ou
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int A, B, PROD;
A = sc.nextInt();
B = sc.nextInt();
PROD = A * B;
System.out.println("PROD = " + PROD);
sc.close();
}
}