Completed more exercises
This commit is contained in:
parent
c496f40365
commit
1d3787dc42
|
@ -0,0 +1,25 @@
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta name="" charset="UTF-8" content="">
|
||||||
|
<style>
|
||||||
|
* {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<script src="./10.js"></script>
|
||||||
|
<h1>Asteriscos</h1>
|
||||||
|
<form>
|
||||||
|
<!-- <select id="opciones"> -->
|
||||||
|
<!-- <option value="HOR">Horizontal</option> -->
|
||||||
|
<!-- <option value="VER">Vertical</option> -->
|
||||||
|
<!-- </select> -->
|
||||||
|
<input type="text" id="numeroDeAsteriscos" name="" value="">
|
||||||
|
<input type="submit" name="" onclick="main()" value="Mostrar">
|
||||||
|
</form>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
|
@ -0,0 +1,9 @@
|
||||||
|
function main() {
|
||||||
|
var numAst = document.getElementById('numeroDeAsteriscos').value;
|
||||||
|
for (let a = 0; a < numAst; a++) {
|
||||||
|
for (let i = 0; i < numAst; i++) {
|
||||||
|
document.writeln(`*`);
|
||||||
|
}
|
||||||
|
document.writeln(`<br>`)
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,25 @@
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta name="" charset="UTF-8" content="">
|
||||||
|
<style>
|
||||||
|
* {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<script src="./11.js"></script>
|
||||||
|
<h1>Asteriscos</h1>
|
||||||
|
<form>
|
||||||
|
<!-- <select id="opciones"> -->
|
||||||
|
<!-- <option value="HOR">Horizontal</option> -->
|
||||||
|
<!-- <option value="VER">Vertical</option> -->
|
||||||
|
<!-- </select> -->
|
||||||
|
<input type="text" id="numeroDeAsteriscos" name="" value="">
|
||||||
|
<input type="submit" name="" onclick="main()" value="Mostrar">
|
||||||
|
</form>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
|
@ -0,0 +1,14 @@
|
||||||
|
function main() {
|
||||||
|
var numAst = document.getElementById('numeroDeAsteriscos').value;
|
||||||
|
for (let a = 1; a < numAst; a++) {
|
||||||
|
|
||||||
|
for (let i = 0; i < a; i++) {
|
||||||
|
document.writeln(`*`);
|
||||||
|
}
|
||||||
|
document.writeln(`<br>`)
|
||||||
|
|
||||||
|
}
|
||||||
|
for (let i = 0; i < numAst / 2; i++) {
|
||||||
|
document.writeln(`*<br>`)
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue