-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
42 lines (40 loc) · 1.35 KB
/
index2.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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Potęgowanie</title>
<link rel="stylesheet" href="style.css">
</head>
<h2>Potęgowanie</h2>
<body>
<form>
<label for="liczba1"><i>Podaj podstawę potęgi:</i></label>
<input type="number" id = "liczba1" name="liczba1">
<br>
<br>
<label for="liczba2"><i>Podaj wykładnik potęgi:</i></label>
<input type="number" id = "liczba2" name="liczba2">
<br>
<br>
<input type="button" onclick="potegowanie()" value="Potęga">
</form>
<p id="wynik"></p>
<script>
function potegowanie()
{
let liczba1 = parseFloat(document.getElementById("liczba1").value);
let liczba2 = parseFloat(document.getElementById("liczba2").value);
if(isNaN(liczba1) || isNaN(liczba2))
{
document.getElementById("wynik").innerHTML = "Proszę podać obie liczby";
}
else
{
document.getElementById("wynik").innerHTML = Math.pow(liczba1, liczba2);
}
}
</script>
</body>
</html>