-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconverter_decimal_fracionario.html
65 lines (56 loc) · 1.15 KB
/
converter_decimal_fracionario.html
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
<!DOCTYPE html>
<html>
<head lang="pt-BR">
<meta charset="UTF-8">
<title>Coversão para Fracionários</title>
</head>
<body>
<input type="text" id="numero"></input>
<button type="button" onclick="CoverterFracao()">Converter para fracionários</button>
<br>
<br>
<div>
<span id="resultado"></span>
</div>
<script>
function CoverterFracao()
{
/*CONVERSÃO DE NÚMEROS DECIMAIS PARA FRACIONÁRIOS*/
var x = document.getElementById("numero").value;
res_num = 0;
res_den = 0;
num = 0;
den = 10;
res = 0;
if(x.search(",") != (-1))
{
x = x.replace(",","").to;
num = parseInt(x);
if(num % 2 == 0)
{
res_num = num / 2;
res_den = den / 2;
}
if(num % 5 == 0)
{
res_num = num / 5;
res_den = den / 5;
}
if((res_num == 0) && (res_den == 0))
{
res = String(num) + "/" + String(den);
}
else
{
res = String(res_num) + "/" + String(res_den);
}
}
else
{
res = x;
}
document.getElementById("resultado").innerHTML = res;
}
</script>
</body>
</html>