-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml.c
32 lines (27 loc) · 778 Bytes
/
html.c
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
<!DOCTYPE html>
<html>
<head>
<title>Web Compiler For C</title>
</head>
<body>
<div>
<h1>Compiladores I</h1>
<p>Proyecto Compilador web para C</p>
<form enctype="multipart/form-data" method="post">
First element :<br>
<input type="text" name="firstelement"><br>
Second element :<br>
<input type="text" name="secondelement"> <br>
<input type="radio" name="operation" value="Addition" checked> Addition <br>
<input type="radio" name="operation" value="Substraction"> Substraction <br>
<input type="radio" name="operation" value="Multiplication"> Multiplication <br>
<input type="radio" name="operation" value="Division"> Division <br>
<input type="submit" value="Calculate">
</form>
<%
int firstelement ;
int secondelement;
%>
</div>
</body>
</html>