-
Notifications
You must be signed in to change notification settings - Fork 0
/
p347.java
43 lines (35 loc) · 1.04 KB
/
p347.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
package com.caiomed03.trabajo2Ev;
import java.util.Scanner;
public class p347 {
public static int func(int ancho, int alto) {
int res;
// Restricciones del enunciado
if (alto < 10 || ancho < 10) {
return 0;
}
// Lógica
if (ancho > alto) {
res = ancho / alto;
ancho = ancho - res * alto;
return res + func(ancho, alto);
} else {
res = alto / ancho;
alto = alto - res * ancho;
return res + func(ancho, alto);
}
}
public static void main(String[] args) {
int ancho, alto;
Scanner sc = new Scanner(System.in);
while (true) {
ancho = sc.nextInt();
alto = sc.nextInt();
// El programa debe finalizar cuando las 2 entradas sean 0
if (ancho == 0 && alto == 0) {
return;
}
// Resultado
System.out.println(func(ancho, alto));
}
}
}