Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch 1 #6

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions 1644-Logica de Programacion_Primeros Pasos-aula2/desktop.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[.ShellClassInfo]
InfoTip=Esta pasta est� compartilhada on-line.
IconFile=C:\Program Files\Google\Drive\googledrivesync.exe
IconIndex=16

22 changes: 22 additions & 0 deletions 1644-Logica de Programacion_Primeros Pasos-aula2/primer_test.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<meta charset="UTF-8">


<h1>mi primer programa HTML!!</h1>
<br>
<br>
<br>

será esto realmente un programa? descubralo <a href="https://es.wikipedia.org/wiki/HTML">aqui</a>

<br>

ingresa <a href="https://es.wikipedia.org/wiki/JavaScript">aqui</a> para ver un verdadero lenguage de programación


<script>
alert("Esto sí es lenguaje de programación");
</script>




28 changes: 28 additions & 0 deletions 1644-Logica de Programacion_Primeros Pasos-aula2/programa.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<meta charset="UTF-8">



<script>

document.write("la suma de las edades de Juan, Pedro y Carlos es...");
document.write("<br>");
document.write((20+25+15));
document.write("<br>");
document.write("<br>");
document.write("Juan nació en el año...");
document.write("<br>");
document.write(2020 - 20);
document.write("<br>");
document.write("<br>");
document.write("Pedro nació en el año...");
document.write("<br>");
document.write(2020 - 25);
document.write("<br>");
document.write("<br>");
document.write("Carlos nació en el año...");
document.write("<br>");
document.write(2020 - 15);

</script>


5 changes: 5 additions & 0 deletions 1644-Logica de Programacion_Primeros Pasos-aula3/desktop.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[.ShellClassInfo]
InfoTip=Esta pasta est� compartilhada on-line.
IconFile=C:\Program Files\Google\Drive\googledrivesync.exe
IconIndex=16

22 changes: 22 additions & 0 deletions 1644-Logica de Programacion_Primeros Pasos-aula3/primer_test.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<meta charset="UTF-8">


<h1>mi primer programa HTML!!</h1>
<br>
<br>
<br>

será esto realmente un programa? descubralo <a href="https://es.wikipedia.org/wiki/HTML">aqui</a>

<br>

ingresa <a href="https://es.wikipedia.org/wiki/JavaScript">aqui</a> para ver un verdadero lenguage de programación


<script>
alert("Esto sí es lenguaje de programación");
</script>




55 changes: 55 additions & 0 deletions 1644-Logica de Programacion_Primeros Pasos-aula3/programa.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<meta charset="UTF-8">

<h1>PROGRAMA</h1>

<script>

var anho = 2025;

document.write("Juan tiene: " + (anho-2000) + " años");
document.write("<br>");
document.write("<br>");
document.write("Pedro tiene: " + (anho-1995) + " años");

anho = 2030

document.write("<br>");
document.write("<br>");
document.write("Carlos tiene: " + (anho-2005) + " años");

document.write("<br>");
document.write("<br>");
document.write("<br>");
document.write("<br>");

anho = 2020
document.write("Jimena tiene: " + (anho-2010) + " años");
document.write("<br>");
document.write("<br>");

document.write("Paola tiene: " + (anho-1995) + " años");
document.write("<br>");
document.write("<br>");

document.write("Laura tiene: " + (anho-2005) + " años");
document.write("<br>");
document.write("<br>");


var edadJimena = 10;
var edadPaola = 25;
var edadLaura = 15;

var nombre1 = "Jimena";
var nombre2 = "Paola";
var nombre3 = "Laura";

promedio = (edadJimena+edadPaola+edadLaura)/3

document.write("El promedio de las edades de " + nombre1 + ", " + nombre2 + " y " + nombre3 + " es: " + Math.round(promedio));
document.write("<br>");


</script>


1 change: 1 addition & 0 deletions one_oracle
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@