This repository has been archived on 2025-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2bki21/komp/javascript.html
danielvici123 b6eafc20e5 irgendwas
2025-01-22 10:10:30 +01:00

23 lines
526 B
HTML

<html>
<head>
<title> JavaScript Beispiel </title>
<style>
* {
border: 1px solid black;
}
</style>
<script type="text/javascript">
function main(){
document.write("<table>");
document.write("<tr><td> Quadratzahl </td> <td> Wurzel </td></tr>")
for(var i = 0; i < 100; i++){
document.write("<tr><td>" + i*i + "</td> <td>" + Math.sqrt(i) + "</td></tr><br>");
}
document.write("</table>");
}
</script>
</head>
<body onload="main();">
</body>
</html>