-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalc1.html
51 lines (43 loc) · 1.26 KB
/
calc1.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
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="script.js"></script>
<script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
</head>
<body>
<center>
<menu>
<li><a href="about.html">Пояснения</a></li>
<li><a href="calc1.html">Расчет дыхательного коэффициента</a></li>
<li><a href="calc2.html">Расчет суррогата дыхательного коэффициента</a></li>
</menu>
<h2>Расчет дыхательного коэффициента</h2>
<table>
<tr>
<td>$$C_{tcv}CO_2(\frac{ml}{dl}):$$</td>
<td><input type="text" id="ctcvco2"></input>
</td>
</tr>
<tr>
<td>$$C_{ta}CO_2(\frac{ml}{dl}):$$</td>
<td><input type="text" id="ctaco2"></input>
</td>
</tr>
<tr>
<td>$$C_{ta}O_2(\frac{ml}{dl}):$$</td>
<td><input type="text" id="ctao2"></input>
</td>
</tr>
<tr>
<td>$$C_{tcv}O_2(\frac{ml}{dl}):$$</td>
<td><input type="text" id="ctcvo2"></input>
</td>
</table>
<button onclick="calculate_coef();">Вычислить</button>
<p id="answer" s></p>
<footer>
<p>И.Д.Райкин и Г.Р.Райкин</p>
</footer>
</center>
</body>
</html>