Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
christianpva authored Mar 21, 2020
1 parent 9e9cb8b commit 398a76e
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 0 deletions.
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>


This comment has been minimized.

Copy link
@Carule

Carule Dec 5, 2022

Mi primer programa html!!



¿Será esto realmente un programa?

descubralo aquí







Ingresa aquí aquí para ver un verdadero lenguaje de programación

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

document.write("Sea bienvenido"); <script> </script>

30 comments on commit 398a76e

@edisoncg
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ejercicios del archivo programa

@LeidysSolano
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

`

<script > document.write("La suma de las edades de Leidys, Linda y Jhohanys es..."); document.write("
"); document.write((25+18+12)); document.write("
"); document.write("
"); document.write("Leidys nacio en el año...") document.write("
"); document.write(2022-25); document.write("
"); document.write("
"); document.write("Linda nacio en el año..."); document.write("
"); document.write(2022-18); document.write("
"); document.write("
"); document.write("Jhohanys nacio en el año..."); document.write("
"); document.write(2022-12); </script>

`

@Abril25
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<script> document.write ("El promedio de Juan , Rafa y Carlos es de...") document.write ("
") document.write ((20+35+15)/3) document.write ("
") document.write ("
") document.write ("El año de nacimiento de Juan es...") document.write ("
") document.write ("
") document.write (2022-20); document.write ("
") document.write ("
") document.write ("El año de nacimiento de Rafa es...") document.write ("
") document.write ("
") document.write (2022-35); document.write ("
") document.write ("
") document.write ("El año de nacimiento de Carlos es...") document.write ("
") document.write ("
") document.write (2022-15); </script> <script> document.write("

Sea bienvenido

"); </script>

Sea bienvenido

<script> </script>

@MichaelSalazar58
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mi primer programa HTML¡¡



¿Sera esto realmente un programa? descubrelo aqui

Ingresa aqui para ver un verdadero lenguaje de programacion



<script> alert("Esto si es un lenguaje de programacion") </script>

@MichaelSalazar58
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PROGRAMA

<script> function saltarLinea() { document.write("
"); document.write("
"); document.write("
"); } function imprimir(frase) { document.write(frase) saltarLinea(); } var anho= 2025; imprimir("hola amigos"); //este codigo calcula la edades de Juan, Pedro y Carlos imprimir("Juan tiene: " + (anho-2000) + "años"); imprimir("Pedro tiene: " + (anho-1995) + "años"); anho= 2030 imprimir("Carlos tiene: " + (anho-2005) + "años"); </script>

@Sofiamartin1991
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<script> document.write("la edad promedio de juan, carlos y pedro es...") document.write("
") document.write((25+15+20)/3); </script> <script> document.write("
") document.write("
") document.write("el año de nacimiento de christian es...") document.write("
") document.write(2022-30); </script>

@Charly8bits
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ejercicios del archivo programa

<title>Programa</title> <script > document.write("La edad de Carlos es...") document.write("?") document.write("
") document.write(2022 - 1996 +" Años") document.write("
") document.write("Estoy escribiendo desde el mundo JavaScript en el mundo HTML") </script>

@JosefinaErazo
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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

@Jorge5569
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Excelente estoy aprendiendo, excelente

@Jorge5569
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bien voy rápido con esto
image

@KellyDonoso
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Me gusta mucho.. La practica hace mas rápido el aprendizaje. gracias

Captura de pantalla 2022-08-15 223715

@KellyDonoso
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Poco a poco vamos conociendo mas y practicando
Captura de pantalla 2022-08-15 223814
.

@23nicolas
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Captura
😄 2️⃣ 3️⃣

@Jesus-Armin
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Vaya!!
Es interesante java y html.

<script> document.write("El suma de las edades de Juan,Pedro y Carlos es...."); document.write("
"); document.write(20+25+15); document.write("
") document.write("Juan nacio en el año.."); document.write("
"); document.write(2020-20); document.write("
"); document.write("
") document.write("Pedro nacio en el año.."); document.write("
"); document.write(2020-25); document.write("
"); document.write("
") document.write("Carlos nacio en el año.."); document.write("
"); document.write(2020-15); document.write("
"); </script>

@Isaacortega19
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<script> document.write("la suma de las edades de e Juan,Pedro y Carlos es..." ); document.write("
"); document.write((20+25+15)); document.write("
"); document.write("
"); document.write("Juan nacio en el año..." ); document.write("
"); document.write(2020-20); document.write("
"); document.write("
"); document.write("Pedro nacio en el año..." ); document.write("
"); document.write(2020-25); document.write("
"); document.write("
"); document.write("carlos nacio en el año..." ); document.write("
"); document.write(2020-15); document.write("
"); document.write("
"); document.write("Sea bienvenido"); </script>

@jvelasco612
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hasta ahra todo muy bien y muy interesante gracias
programa

@Carule
Copy link

@Carule Carule commented on 398a76e Dec 5, 2022 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Mariyely
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Vamos paso a paso para cumplir la meta
2022-12-05 21_32_30-C__Users_Mariyely_Desktop_CURSO PROGRAMACIÓN BASICA_Actividad 1 creación HTML_Ej

@Citlalix
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mi primer programa HTML!!






sera esto realmente un programa? descubralo aqui

ingresa aqui para ver un verdadero lenguaje de programacion

<script> alert("esto si es lenguaje de programacion"); </script>

@Citlalix
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<script> document.write("el promedio de edad de Juan, Pedro y Carlos es..."); document.write("
"); document.write((20+25+15)); document.write("
"); document.write("
"); document.write("Juan nació en el año..."); document.write("
"); document.write(2020-20); document.write("
"); document.write("
"); document.write("Pedro nació en el año..."); document.write("
"); document.write(2020-25); document.write("
"); document.write("
"); document.write("Carlos nació en el año..."); document.write("
"); document.write(2020-15); </script>

@Luzsuasu
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Captura de pantalla 2022-12-11 172646

Muy agradecida de cada dia aprender mas y mas de programación

@dasg1987
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<script> document.write("la su de las edad de Christian David y Jose es...."); document.write("
"); document.write((20+25+15)); document.write("
"); document.write("
"); document.write(""); document.write(2022-20); document.write("
"); document.write("
"); document.write(""); document.write(2022-25); document.write("
"); document.write("
"); document.write(""); document.write(2022-15); </script>

<script> document.write(12 + " años"); </script>

<script> document.write(Mi edad es + 12); </script>

<script> document.write("Media calculada " + 20); </script>

<script> document.write(10 + 20); </script>

<script> document.write("Estoy escribiendo desde el mundo JavaScript en el mundo HTML"); </script>

Estoy escribiendo desde el mundo JavaScript en el mundo HTML <script> </script>

Estoy escribiendo desde el mundo JavaScript en el mundo HTML <script> </script> Aquí también estamos en el mundo HTML, porque está fuera de la etiqueta script

<script> document.write(10 + 20); </script>

<script> document.write("

Sea bienvenido

"); </script>

Sea bienvenido

<script> </script>

document.write("Sea bienvenido"); <script> </script>

@SaraPaez
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

@Rubi1685
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Imagen2
lo que estoy haciendo en vez de cortar y pegar estoy escribiendo los códigos para que se me acostumbre más a ellos

@GabrielPinto124Baez
Copy link

@GabrielPinto124Baez GabrielPinto124Baez commented on 398a76e Apr 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Gabriel Jose Pinto Baez
operaciones 1
operaciones 2

@UrielMoralesF
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Esta bastante bien saber como funciona html dentro de javascript, me gustan las clases.
image

@LKheisy
Copy link

@LKheisy LKheisy commented on 398a76e Apr 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

me divertí mucho
Captura de pantalla 2023-04-07 181913

@dojavas
Copy link

@dojavas dojavas commented on 398a76e Apr 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seguimos practicando.

programa

@18JoseDaniel
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Captura de pantalla (294)

eh aprendido sobre HTML y JavaScript

@madthinker646
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2023-04-16 (13)
2023-04-16 (12)

Please sign in to comment.