<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Clon de LENGUAJES DE PROGRAMACIÓN by Bryan Estrada</title>
      <link>https://padlet.com/zbryan196/1dh7yvhbtptrtj2w</link>
      <description>Trabajo en Clase Introducción a la Programación II Cuatrimestre 2021</description>
      <language>en-us</language>
      <pubDate>2021-10-21 02:22:27 UTC</pubDate>
      <lastBuildDate>2021-10-21 02:56:10 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet.net/icons/png/1f5a5.png</url>
      </image>
      <item>
         <title>Integrantes</title>
         <author>zbryan196</author>
         <link>https://padlet.com/zbryan196/1dh7yvhbtptrtj2w/wish/1832238006</link>
         <description><![CDATA[<div>Daniel Manzanares Quesada<br>Bryan Estrada Velasquez<br>Moises Piedra Baena<br>Kenner Espinoza Rivera</div>]]></description>
         <enclosure url="https://static.vecteezy.com/system/resources/previews/000/228/364/original/vector-isometric-teamwork-illustration.jpg" />
         <pubDate>2021-10-21 02:22:27 UTC</pubDate>
         <guid>https://padlet.com/zbryan196/1dh7yvhbtptrtj2w/wish/1832238006</guid>
      </item>
      <item>
         <title>Swift</title>
         <author>zbryan196</author>
         <link>https://padlet.com/zbryan196/1dh7yvhbtptrtj2w/wish/1832238007</link>
         <description><![CDATA[<div>Swift es un intuitivo lenguaje de programación creado por Apple que permite diseñar apps para iOS, Mac, el Apple TV y el Apple Watch.<br><br>Fue presentado en la WWDC 20147​ y está diseñado para integrarse con los Frameworks Cocoa y Cocoa Touch; puede usar cualquier biblioteca programada en Objective-C y llamar a funciones de C.<br><br>Swift incorpora todas las grandes ventajas de lenguajes de scripting como Phyton o Ruby, pero el compilador lo sitúa a un nivel de abstracción por debajo de Objective-C, con lo que es mucho más eficiente a la hora de generar el binario para arquitecturas ARM y x86.<br><br><br></div>]]></description>
         <enclosure url="https://www.programacion.com.py/wp-content/uploads/2017/01/AAEAAQAAAAAAAAleAAAAJDAzNDFlYjU1LTgwOGQtNGQ2Ny04NjMwLTU5NjkxNzk1ZTAzMQ.png" />
         <pubDate>2021-10-21 02:22:27 UTC</pubDate>
         <guid>https://padlet.com/zbryan196/1dh7yvhbtptrtj2w/wish/1832238007</guid>
      </item>
      <item>
         <title>Ejemplo de Codigo fuente Swift</title>
         <author>zbryan196</author>
         <link>https://padlet.com/zbryan196/1dh7yvhbtptrtj2w/wish/1832238008</link>
         <description><![CDATA[<ol><li>// Declare our new class&nbsp;</li><li>class Person {</li><li><br></li><li>// We can define class property here</li><li>var age&nbsp; = 25</li><li><br></li><li>// Implement Class initializer. Initializers are called when a new object of this class is created</li><li>init() {&nbsp;</li><li>&nbsp; &nbsp;print(“A new instance of this class Person is created.”)&nbsp;</li><li>&nbsp;}&nbsp;</li><li><br></li><li>}&nbsp;</li><li><br></li><li>// We can now create an instance of class Person - an object - by putting parentheses after the class name</li><li>let personObj =&nbsp; Person()</li><li><br></li><li>// Once an instance of Person class is created we can access its properties using the dot “.” syntax.</li><li>print(“This person age is \(personObj.age)”)</li></ol><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-10-21 02:22:27 UTC</pubDate>
         <guid>https://padlet.com/zbryan196/1dh7yvhbtptrtj2w/wish/1832238008</guid>
      </item>
      <item>
         <title>Python</title>
         <author>zbryan196</author>
         <link>https://padlet.com/zbryan196/1dh7yvhbtptrtj2w/wish/1832276823</link>
         <description><![CDATA[<div>* Su nivel abstracción es de alto nivel,<br><br>*Es de&nbsp; cuarta generación.<br><br>*Python es un lenguaje de programación<strong> </strong>multiparadigma. Esto significa que más que forzar a los programadores a adoptar un estilo particular de programación, permite varios estilos: programación orientada a objetos,<strong> </strong>programación imperativa y programación funcional.<br><br>*Puede ejecutarse en un script <strong>Python, IDLE...</strong><br><br>* Algunas aplicaciones en las que se utiliza son:<br>1.Pinterest<br>2.Netflix<br>3.Spotify<br><br></div><div>Ejemplo de codigo:<br>#Variables<br>producto=input("\nIngrese el nombre del producto: ")<br>precio=int(input("\nIngrese el Precio: "))<br>cantidad=int(input("\nIngrese la cantidad de productos: "))<br>print("----------------------------------------------------- \n")<br><br><br>#Procesos de transformacion.<br>PrecioNeto = precio*cantidad<br><br>producto_descuento = PrecioNeto*0.15<br><br>IVA = (PrecioNeto-producto_descuento)*0.13<br><br>suma_impuestos = (PrecioNeto-producto_descuento)+IVA<br><br>#PROCESOS A IMPRIMIR<br><br>print("PRECIO NETO: ", PrecioNeto)<br><br>print("TOTAL DE DESCUENTO A APLICAR: ",producto_descuento)<br><br>print("TOTAL A PAGAR CON DESCUENTO: ",PrecioNeto-producto_descuento)<br><br>print("IVA: ",IVA)<br>print("-----------------------------------------------------")<br>print("-----------------------------------------------------\n\n")<br>print("TOTAL A PAGAR: ",suma_impuestos)</div><div><br><br></div>]]></description>
         <enclosure url="https://img2.freepng.es/20180712/cos/kisspng-learning-to-program-using-python-programming-langu-tic-tac-toe-logo-5b47098b6cd292.0915139615313821554458.jpg" />
         <pubDate>2021-10-21 02:38:43 UTC</pubDate>
         <guid>https://padlet.com/zbryan196/1dh7yvhbtptrtj2w/wish/1832276823</guid>
      </item>
      <item>
         <title></title>
         <author>zbryan196</author>
         <link>https://padlet.com/zbryan196/1dh7yvhbtptrtj2w/wish/1832289633</link>
         <description><![CDATA[<div>* Su nivel de abstracción es alto.<br><br>* Es de cuarta Generación.<br>&nbsp;<br>* Java sirve para crear aplicaciones y procesos en una gran diversidad de dispositivos. Se basa en una programación orientada a objetos, permite ejecutar un mismo programa en múltiples sistemas operativos y hace posible ejecutar el código en sistemas remotos de manera segura.<br><br>* Se puede ejecutar desde el Código del sistema o desde un NetBeans<br><br>* Ejemplo de codigo:<br>package suma;<br><br>import javax.swing.JOptionPane;<br><br>public class sumaMain {<br>&nbsp; &nbsp; public static void main(String args[]){<br>&nbsp; &nbsp; &nbsp; &nbsp; int numUno = Integer.parseInt(JOptionPane.showInputDialog("ingrese el valor uno:_"));<br>&nbsp; &nbsp; &nbsp; &nbsp; int numDos = Integer.parseInt(JOptionPane.showInputDialog("ingrese el valor dos:_"));<br>&nbsp; &nbsp; &nbsp; &nbsp; /*este va ser el objeto(valores) que se esta comunicando con la clase suma*/<br>&nbsp; &nbsp; &nbsp; &nbsp; suma valores = new suma(numUno,numDos);<br>&nbsp; &nbsp; &nbsp; &nbsp; valores.operacion();<br>&nbsp; &nbsp; &nbsp; &nbsp; valores.imprimir();<br>&nbsp; &nbsp; }</div>]]></description>
         <enclosure url="https://revistadigital.inesem.es/informatica-y-tics/files/2016/02/Java-Inesem.jpg" />
         <pubDate>2021-10-21 02:43:40 UTC</pubDate>
         <guid>https://padlet.com/zbryan196/1dh7yvhbtptrtj2w/wish/1832289633</guid>
      </item>
   </channel>
</rss>
