Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
training02
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
Liza Coronel
training02
Commits
8d65d28a
Commit
8d65d28a
authored
7 years ago
by
roshka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
calculadora.html
parents
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
0 deletions
+43
-0
calculadora.html
+43
-0
No files found.
calculadora.html
0 → 100644
View file @
8d65d28a
<!DOCTYPE html>
<html>
<head>
<title>
calculadora
</title>
</head>
<body>
<form>
<table
border=
"2px"
width=
"200"
align=
"center"
>
<tr>
<td
colspan=
"4"
style=
"height: 20px"
><input
type=
"text"
name=
"mostrar"
></td>
</tr>
<tr>
<td><input
type=
"button"
value=
"7"
name=
"7"
onclick=
"mostrar.value+='7'"
></td>
<td><input
type=
"button"
value=
"8"
name=
"8"
onclick=
"mostrar.value+='8'"
></td>
<td><input
type=
"button"
value=
"9"
name=
"9"
onclick=
"mostrar.value+='9'"
></td>
<td><input
type=
"button"
value=
"-"
name=
"-"
onclick=
"mostrar.value+='-'"
></td>
</tr>
<tr>
<td><input
type=
"button"
value=
"4"
name=
"4"
onclick=
"mostrar.value+='4'"
></td>
<td><input
type=
"button"
value=
"5"
name=
"5"
onclick=
"mostrar.value+='5'"
></td>
<td><input
type=
"button"
value=
"6"
name=
"6"
onclick=
"mostrar.value+='6'"
></td>
<td><input
type=
"button"
value=
"+"
name=
"+"
onclick=
"mostrar.value+='+'"
></td>
</tr>
<tr>
<td><input
type=
"button"
value=
"1"
name=
"1"
onclick=
"mostrar.value+='1'"
></td>
<td><input
type=
"button"
value=
"2"
name=
"2"
onclick=
"mostrar.value+='2'"
></td>
<td><input
type=
"button"
value=
"3"
name=
"3"
onclick=
"mostrar.value+='3'"
></td>
<td><input
type=
"button"
value=
"*"
name=
"*"
onclick=
"mostrar.value+='*'"
></td>
</tr>
<tr>
<td><input
type=
"button"
value=
"C"
name=
"C"
onclick=
"mostrar.value=' '"
></td>
<td><input
type=
"button"
value=
"0"
name=
"0"
onclick=
"mostrar.value+='0'"
></td>
<td><input
type=
"button"
value=
"="
name=
"="
onclick=
"mostrar.value=eval(mostrar.value)"
></td>
<td><input
type=
"button"
value=
"/"
name=
"/"
onclick=
"mostrar.value+='/'"
></td>
</tr>
</table>
</form>
</body>
</html>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
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