Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
js-e002
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Pedro Rolon
js-e002
Commits
39c5f65b
Commit
39c5f65b
authored
Oct 16, 2018
by
Pedro Rolon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modifiqué la calculadora para que admita números con coma!
parent
1b780202
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
9 deletions
+31
-9
ejercicios/calculadora.html
+31
-9
No files found.
ejercicios/calculadora.html
View file @
39c5f65b
...
...
@@ -13,7 +13,7 @@
height
:
50px
;
}
#borrar_ventana
{
width
:
16
5
px
;
width
:
16
3
px
;
}
.boton_accion
{
margin-left
:
10px
;
...
...
@@ -55,7 +55,7 @@
<td>
<button
disabled=
"disabled"
>
&
nbsp
</button>
<button
onclick=
boton(0)
>
0
</button>
<button
disabled=
"disabled"
>
&
nbsp
</button>
<button
onclick=
boton(".")
>
.
</button>
<button
class=
"boton_accion"
onclick=
boton("+")
>
+
</button>
</td>
</tr>
...
...
@@ -64,6 +64,7 @@
<button
class=
"boton_accion"
onclick=
boton("=")
>
=
</button>
</section>
<script>
//let contador = 0; //Para probar!!
let
a
=
document
.
getElementById
(
"input"
);
borrar_ventana
();
let
bandera
=
true
;
...
...
@@ -71,9 +72,13 @@
a
.
value
=
" "
;
}
function
agregar
(
elemento
){
if
(
isNaN
(
parseInt
(
elemento
))){
if
(
isNaN
(
parseFloat
(
elemento
))){
if
(
elemento
==
"."
){
a
.
value
=
a
.
value
+
elemento
;
}
else
{
a
.
value
=
a
.
value
+
" "
+
elemento
+
" "
;
}
}
else
{
a
.
value
=
a
.
value
+
elemento
;
}
...
...
@@ -87,19 +92,19 @@
for
(
i
=
0
;
i
<
operaciones
.
length
;
i
++
){
if
(
operaciones
[
i
]
==
"+"
){
resultado
=
resultado
+
parse
In
t
(
operaciones
[
++
i
]);
resultado
=
resultado
+
parse
Floa
t
(
operaciones
[
++
i
]);
}
else
if
(
operaciones
[
i
]
==
"-"
){
resultado
=
resultado
-
parse
In
t
(
operaciones
[
++
i
]);
resultado
=
resultado
-
parse
Floa
t
(
operaciones
[
++
i
]);
}
else
if
(
operaciones
[
i
]
==
"*"
){
resultado
=
resultado
*
parse
In
t
(
operaciones
[
++
i
]);
resultado
=
resultado
*
parse
Floa
t
(
operaciones
[
++
i
]);
}
else
if
(
operaciones
[
i
]
==
"/"
){
resultado
=
resultado
-
parse
In
t
(
operaciones
[
++
i
]);
resultado
=
resultado
-
parse
Floa
t
(
operaciones
[
++
i
]);
}
else
{
resultado
=
parse
In
t
(
operaciones
[
i
]);
resultado
=
parse
Floa
t
(
operaciones
[
i
]);
}
//console.log(resultado);
}
...
...
@@ -128,8 +133,25 @@
calcular_resultado
();
bandera
=
false
;
//a.value = null;
//
console.log(parseInt("9999
"));
//
/console.log(parseFloat("1.1
"));
}
//Este codigo era para que imprima el resultado
//al meter dos numeros
//pero no admite numeros con >1 cifras
/*agregar(input);
//contador++;
if(contador>2){
calcular_resultado();
contador=0;
}*/
}
</script>
</body>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment