<?xml version="1.0" encoding="ISO-8859-1" ?> 
<rss version="2.0">

  <channel> 
    <title>Blogs en Programacion Web</title>
    <link>http://www.programacionweb.net/</link>
    <description>Weblogs de los usuarios de programacion web</description>
    <language>es-ES</language>
    <item>
      <title>Programacion</title>
      <description type='html'>/*	Programa #1   usando el for&lt;br /&gt;				Acarigua 09-04-2008&lt;br /&gt;  Leer 5 números enteros positivos contar cuantos pares&lt;br /&gt;  e impares hay&lt;br /&gt;&lt;br /&gt;  Nombre: Cesar Riera&lt;br /&gt;  Mención: Informática&lt;br /&gt;  Sección: 236		*/&lt;br /&gt;&lt;br /&gt;#include &amp;lt;iostream.h&gt;&lt;br /&gt;#include &amp;lt;stdlib.h&gt;&lt;br /&gt;&lt;br /&gt;int cont_par=0;&lt;br /&gt;int cont_impar=0;&lt;br /&gt;int Nnumero=0;&lt;br /&gt;&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt;	int i=0;&lt;br /&gt;	for(i=0;i&amp;lt;5;i++)&lt;br /&gt;	{&lt;br /&gt;		cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba el numero &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;i+1;&lt;br /&gt;	cin&gt;&gt;Nnumero;&lt;br /&gt;&lt;br /&gt;	if(Nnumero %2==0)&lt;br /&gt;	{&lt;br /&gt;		cont_par++;&lt;br /&gt;	}&lt;br /&gt;	else&lt;br /&gt;	{&lt;br /&gt;		cont_impar++;&lt;br /&gt;	}&lt;br /&gt;	}&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Hay &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;cont_par&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; números pares&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Hay &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;cont_impar&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; números impares&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;system(&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;pause&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;);&lt;br /&gt;system(“cls”);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;/*	Programa #1  usando el while&lt;br /&gt;				Acarigua 09-04-2008&lt;br /&gt;  Leer 5 números enteros positivos contar cuantos pares&lt;br /&gt;  e impares hay&lt;br /&gt;&lt;br /&gt;   Nombre: Cesar Riera&lt;br /&gt;  Mención: Informática&lt;br /&gt;  Sección: 236		*/&lt;br /&gt;&lt;br /&gt;#include &amp;lt;iostream.h&gt;&lt;br /&gt;#include &amp;lt;stdlib.h&gt;&lt;br /&gt;&lt;br /&gt;int cont_par=0;&lt;br /&gt;int cont_impar=0;&lt;br /&gt;int Nnumero=0;&lt;br /&gt;int auxiliar=0;&lt;br /&gt;&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt;	&lt;br /&gt;	while(auxiliar&amp;lt;5)&lt;br /&gt;	{&lt;br /&gt;		cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba un numero : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;		cin&gt;&gt;Nnumero;&lt;br /&gt;&lt;br /&gt;	if(Nnumero %2==0)&lt;br /&gt;	{&lt;br /&gt;		cont_par++;&lt;br /&gt;	}&lt;br /&gt;	else&lt;br /&gt;	{&lt;br /&gt;		cont_impar++;&lt;br /&gt;	}&lt;br /&gt;	auxiliar++;&lt;br /&gt;	}&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Hay &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;cont_par&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; números pares&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Hay &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;cont_impar&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; números impares&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;system(&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;pause&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;);&lt;br /&gt;system(“cls”);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;/*	Programa #2&lt;br /&gt;				Acarigua 09-04-2008&lt;br /&gt;  Leer un número, averiguar si es par o impar&lt;br /&gt;&lt;br /&gt;  Nombre: Cesar Riera&lt;br /&gt;  Mención: Informática&lt;br /&gt;  Sección: 236		*/&lt;br /&gt;&lt;br /&gt;#include &amp;lt;iostream.h&gt;&lt;br /&gt;#include &amp;lt;stdlib.h&gt;&lt;br /&gt;&lt;br /&gt;int Nnumero=0;&lt;br /&gt;&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba un numero :&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;	cin&gt;&gt;Nnumero;&lt;br /&gt;&lt;br /&gt;	if(Nnumero %2==0)&lt;br /&gt;	{&lt;br /&gt;		cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; El numero es par &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;	}&lt;br /&gt;	else&lt;br /&gt;	{&lt;br /&gt;		cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; El numero es impar &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;	}&lt;br /&gt;system(&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;pause&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;);&lt;br /&gt;system(“cls”);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;/*	Programa #3&lt;br /&gt;Acarigua 09-04-2008&lt;br /&gt;&lt;br /&gt;  Leer un numero natural averiguar cuantos números &lt;br /&gt;  pares hay anteriores a el.&lt;br /&gt;&lt;br /&gt;  Nombre: Cesar Riera&lt;br /&gt;  Mención: Informática&lt;br /&gt;  Sección: 236		*/&lt;br /&gt;&lt;br /&gt;#include &amp;lt;iostream.h&gt;&lt;br /&gt;#include &amp;lt;stdlib.h&gt;&lt;br /&gt;&lt;br /&gt;int contador=0;&lt;br /&gt;int Nnumero=0;&lt;br /&gt;int aux=0;&lt;br /&gt;&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba un numero : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;	cin&gt;&gt;Nnumero;&lt;br /&gt;	aux=Nnumero;&lt;br /&gt;	while(aux!=1)&lt;br /&gt;	{&lt;br /&gt;		Nnumero=Nnumero-1;&lt;br /&gt;	if(Nnumero %2==0)&lt;br /&gt;	{&lt;br /&gt;		contador++;&lt;br /&gt;	&lt;br /&gt;	}&lt;br /&gt;	aux--;&lt;br /&gt;	}&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Hay &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;contador&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; números pares anteriores a el &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;system(&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;pause&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;);&lt;br /&gt;system(“cls”);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;/* 	Programa # 4&lt;br /&gt;			Acarigua 09-04-2008&lt;br /&gt;	  Lee dos números naturales imprimir cual es el&lt;br /&gt;  mayor y cual es el menor&lt;br /&gt;  Nombre: Cesar Riera&lt;br /&gt;  Mención: Informática&lt;br /&gt; 	 Sección: 236	*/&lt;br /&gt;#include &amp;lt;iostream.h&gt; &lt;br /&gt;#include &amp;lt;stdlib.h&gt;  &lt;br /&gt;&lt;br /&gt;int mayor=0;  &lt;br /&gt;int menor=0;   &lt;br /&gt;int Nnumero1=0; &lt;br /&gt;int Nnumero2=0; &lt;br /&gt;&lt;br /&gt;void main()  &lt;br /&gt;{  &lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba el numero 1 : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;   &lt;br /&gt;	cin&gt;&gt;Nnumero1;   &lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba el numero 2 : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;  &lt;br /&gt;	cin&gt;&gt;Nnumero2;   &lt;br /&gt;&lt;br /&gt;	if(Nnumero1&gt;Nnumero2) &lt;br /&gt;	{   &lt;br /&gt;		mayor=Nnumero1;&lt;br /&gt;	menor=Nnumero2;&lt;br /&gt;	}  &lt;br /&gt;	else  &lt;br /&gt;	{  &lt;br /&gt;		mayor=Nnumero2;&lt;br /&gt;		menor=Nnumero1;&lt;br /&gt;	}  &lt;br /&gt;cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; El numero mayor es : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;mayor&amp;lt;&amp;lt;endl; &lt;br /&gt;cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; El numero menor es : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;menor&amp;lt;&amp;lt;endl;  &lt;br /&gt;system(&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;pause&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;);&lt;br /&gt;system(“cls”);&lt;br /&gt;&lt;br /&gt;} &lt;br /&gt; &lt;br /&gt;/*	Programa #5&lt;br /&gt;				Acarigua 14-04-2008&lt;br /&gt;  Hacer un programa que lea 2 números.&lt;br /&gt;  Realice la suma, resta, multiplicación y división&lt;br /&gt;&lt;br /&gt;  Nombre: Cesar Riera&lt;br /&gt;  Mención: Informática&lt;br /&gt;  Sección: 236		*/&lt;br /&gt;&lt;br /&gt;#include &amp;lt;iostream.h&gt;&lt;br /&gt;#include &amp;lt;stdlib.h&gt;&lt;br /&gt;&lt;br /&gt;int Nnumero1=0;&lt;br /&gt;int Nnumero2=0;&lt;br /&gt;&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba el numero 1 &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;	cin&gt;&gt;Nnumero1;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba el numero 2 &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;	cin&gt;&gt;Nnumero2;&lt;br /&gt;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; La suma es           : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;Nnumero1+Nnumero2&amp;lt;&amp;lt;endl;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; La resta es          : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;Nnumero1-Nnumero2&amp;lt;&amp;lt;endl;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; La multiplicación es : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;Nnumero1*Nnumero2&amp;lt;&amp;lt;endl;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; La división es       : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;Nnumero1/Nnumero2&amp;lt;&amp;lt;endl;&lt;br /&gt;system(&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;pause&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;);&lt;br /&gt;system(“cls”);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;/*	Programa #5.A&lt;br /&gt;				Acarigua 14-04-2008&lt;br /&gt;  Hacer un programa que lea 2 números.&lt;br /&gt;  Realice la suma, resta, multiplicación y división.&lt;br /&gt;				Acarigua 16-04-2008&lt;br /&gt;Condicional: if, then / else&lt;br /&gt;Agregar antes de imprimir los valores un if / else para que&lt;br /&gt;Diga cual es el mayor&lt;br /&gt;Y cual es el menor.&lt;br /&gt;&lt;br /&gt;  Nombre: Cesar Riera&lt;br /&gt;  Mención: Informática&lt;br /&gt;  Sección: 236		*/&lt;br /&gt;&lt;br /&gt;#include &amp;lt;iostream.h&gt;&lt;br /&gt;#include &amp;lt;stdlib.h&gt;&lt;br /&gt;&lt;br /&gt;double Nnumero1=0;&lt;br /&gt;double Nnumero2=0;&lt;br /&gt;&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba el numero 1 &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;	cin&gt;&gt;Nnumero1;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba el numero 2 &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;	cin&gt;&gt;Nnumero2;&lt;br /&gt;&lt;br /&gt;	if(Nnumero1&gt;Nnumero2)&lt;br /&gt;		Cout&amp;lt;&amp;lt;” El numero 1 es mayor al numero 2 “&amp;lt;&amp;lt;endl;&lt;br /&gt;else&lt;br /&gt;	Cout&amp;lt;&amp;lt;” El numero 2 es mayor al numero 1 “&amp;lt;&amp;lt;endl;&lt;br /&gt;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; La suma es : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;Nnumero1+Nnumero2&amp;lt;&amp;lt;endl;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; La resta es : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;Nnumero1-Nnumero2&amp;lt;&amp;lt;endl;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; La multiplicación es : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;Nnumero1*Nnumero2&amp;lt;&amp;lt;endl;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; La división es : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;Nnumero1/Nnumero2&amp;lt;&amp;lt;endl;&lt;br /&gt;system(&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;pause&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;);&lt;br /&gt;system(“cls”);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/*	Programa #5.B&lt;br /&gt;				Acarigua 14-04-2008&lt;br /&gt;  Hacer un programa que lea 2 números.&lt;br /&gt;  Realice la suma, resta, multiplicación y división.&lt;br /&gt;=======================================&lt;br /&gt;				Acarigua 16-04-2008&lt;br /&gt;Condicional: if, then / else&lt;br /&gt;Agregar antes de imprimir los valores un if / else para que&lt;br /&gt;Diga cual es el mayor&lt;br /&gt;Y cual es el menor.&lt;br /&gt;===============================&lt;br /&gt;Declarar una variable char para controlar si desea seguir o no.&lt;br /&gt;===============================&lt;br /&gt;&lt;br /&gt;  Nombre: Cesar Riera&lt;br /&gt;  Mención: Informática&lt;br /&gt;  Sección: 236		*/&lt;br /&gt;&lt;br /&gt;#include &amp;lt;iostream.h&gt;&lt;br /&gt;#include &amp;lt;stdlib.h&gt;&lt;br /&gt;&lt;br /&gt;double Nnumero1=0;&lt;br /&gt;double Nnumero2=0;&lt;br /&gt;char cSeguir=’s’;&lt;br /&gt;&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt;		While(cSeguir==’s’)&lt;br /&gt;	{&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba el numero 1 &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;	cin&gt;&gt;Nnumero1;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba el numero 2 &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;	cin&gt;&gt;Nnumero2;&lt;br /&gt;&lt;br /&gt;	if(Nnumero1&gt;Nnumero2)&lt;br /&gt;		Cout&amp;lt;&amp;lt;” El numero 1 es mayor al numero 2 “&amp;lt;&amp;lt;endl;&lt;br /&gt;else&lt;br /&gt;	Cout&amp;lt;&amp;lt;” El numero 2 es mayor al numero 1 “&amp;lt;&amp;lt;endl;&lt;br /&gt;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; La suma es : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;Nnumero1+Nnumero2&amp;lt;&amp;lt;endl;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; La resta es : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;Nnumero1-Nnumero2&amp;lt;&amp;lt;endl;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; La multiplicación es : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;Nnumero1*Nnumero2&amp;lt;&amp;lt;endl;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; La división es : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;Nnumero1/Nnumero2&amp;lt;&amp;lt;endl;&lt;br /&gt;  &lt;br /&gt;cout&amp;lt;&amp;lt;” Desea seguir s/n”;&lt;br /&gt;cin&gt;&gt;cSeguir;&lt;br /&gt;}&lt;br /&gt;system(&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;pause&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;);&lt;br /&gt;system(“cls”);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;/*	Programa #5.C&lt;br /&gt;				Acarigua 14-04-2008&lt;br /&gt;  Hacer un programa que lea 2 números.&lt;br /&gt;  Realice la suma, resta, multiplicación y división.&lt;br /&gt;=======================================&lt;br /&gt;				Acarigua 16-04-2008&lt;br /&gt;Condicional: if, then / else&lt;br /&gt;Agregar antes de imprimir los valores un if / else para que&lt;br /&gt;Diga cual es el mayor&lt;br /&gt;Y cual es el menor.&lt;br /&gt;===============================&lt;br /&gt;Declarar una variable char para controlar si desea seguir o no.&lt;br /&gt;===============================&lt;br /&gt;Agrégale que trabaje tanto con s como con S&lt;br /&gt;=================================&lt;br /&gt;&lt;br /&gt;  Nombre: Cesar Riera	&lt;br /&gt;  Mención: Informática&lt;br /&gt;  Sección: 236		*/&lt;br /&gt;&lt;br /&gt;#include &amp;lt;iostream.h&gt;&lt;br /&gt;#include &amp;lt;stdlib.h&gt;&lt;br /&gt;&lt;br /&gt;double Nnumero1=0;&lt;br /&gt;double Nnumero2=0;&lt;br /&gt;char cSeguir=’s’;&lt;br /&gt;&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt;		While(cSeguir==’s’||cSeguir==’S’)&lt;br /&gt;	{&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba el numero 1 &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;	cin&gt;&gt;Nnumero1;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba el numero 2 &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;	cin&gt;&gt;Nnumero2;&lt;br /&gt;&lt;br /&gt;	if(Nnumero1&gt;Nnumero2)&lt;br /&gt;		Cout&amp;lt;&amp;lt;” El numero 1 es mayor al numero 2 “&amp;lt;&amp;lt;endl;&lt;br /&gt;else&lt;br /&gt;	Cout&amp;lt;&amp;lt;” El numero 2 es mayor al numero 1 “&amp;lt;&amp;lt;endl;&lt;br /&gt;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; La suma es : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;Nnumero1+Nnumero2&amp;lt;&amp;lt;endl;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; La resta es : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;Nnumero1-Nnumero2&amp;lt;&amp;lt;endl;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; La multiplicación es : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;Nnumero1*Nnumero2&amp;lt;&amp;lt;endl;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; La división es : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;Nnumero1/Nnumero2&amp;lt;&amp;lt;endl;&lt;br /&gt;  &lt;br /&gt;cout&amp;lt;&amp;lt;” Desea seguir s/n”;&lt;br /&gt;cin&gt;&gt;cSeguir;&lt;br /&gt;}&lt;br /&gt;system(&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;pause&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;);&lt;br /&gt;system(“cls”);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;/*	Programa #6 &lt;br /&gt;				Acarigua 16-04-2008&lt;br /&gt;  Elabore un programa en c++ que:&lt;br /&gt;Lea 2 numeros y compare si son iguales o no.&lt;br /&gt;&lt;br /&gt;  Nombre: Cesar Riera&lt;br /&gt;  Mención: Informática&lt;br /&gt;  Sección: 236		*/&lt;br /&gt;&lt;br /&gt;#include &amp;lt;iostream.h&gt;&lt;br /&gt;#include &amp;lt;stdlib.h&gt;&lt;br /&gt;int Nnumero1=0;&lt;br /&gt;int Nnumero2=0;&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt;		cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba un numero 1 : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;		cin&gt;&gt;Nnumero1;&lt;br /&gt;		cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba el numero 2 : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;		cin&gt;&gt;Nnumero2;&lt;br /&gt;&lt;br /&gt;     if(Nnumero1==Nnumero2)&lt;br /&gt;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; El numero 1 es igual al numero 2 &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;else&lt;br /&gt;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; el numero 1 es diferente al numero 2 &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;&lt;br /&gt;system(&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;pause&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;);&lt;br /&gt;system(“cls”);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/*	Programa #7 &lt;br /&gt;				Acarigua 16-04-2008&lt;br /&gt;  Elabore un programa en c++ que:&lt;br /&gt;Lea 2 numeros y compare si son iguales o no.&lt;br /&gt;Pero controlando si desea continuar o no.&lt;br /&gt;&lt;br /&gt;  Nombre: Cesar Riera&lt;br /&gt;  Mención: Informática&lt;br /&gt;  Sección: 236		*/&lt;br /&gt;#include &amp;lt;iostream.h&gt;&lt;br /&gt;#include &amp;lt;stdlib.h&gt;&lt;br /&gt;&lt;br /&gt;int Nnumero1=0;&lt;br /&gt;int Nnumero2=0;&lt;br /&gt;char cSeguir=&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&apos;s&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&apos;;&lt;br /&gt;&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt;	while(cSeguir==&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&apos;s&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&apos;||cSeguir==&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&apos;S&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&apos;)&lt;br /&gt;{&lt;br /&gt;		cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba un numero 1 : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;		cin&gt;&gt;Nnumero1;&lt;br /&gt;		cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba el numero 2 : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;		cin&gt;&gt;Nnumero2;&lt;br /&gt;     if(Nnumero1==Nnumero2)&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; El numero 1 es igual al numero 2 &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;else&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; el numero 1 es diferente al numero 2 &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Desea continuar s/n &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;cin&gt;&gt;cSeguir;&lt;br /&gt;}&lt;br /&gt;	system(&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;pause&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;);&lt;br /&gt;system(“cls”);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/*	Programa #8 &lt;br /&gt;				Acarigua 16-04-2008&lt;br /&gt;  Elabore un programa en c++ que:&lt;br /&gt;Que calcule el factorial de un numero.&lt;br /&gt;  Nombre: Cesar Riera&lt;br /&gt;  Mención: Informática&lt;br /&gt;  Sección: 236		*/&lt;br /&gt;&lt;br /&gt;#include &amp;lt;iostream.h&gt;&lt;br /&gt;#include &amp;lt;stdlib.h&gt;&lt;br /&gt;int factorial=1;&lt;br /&gt;int Nnumero=0;&lt;br /&gt;&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt;	int i=0;&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba un numero : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;	cin&gt;&gt;Nnumero;&lt;br /&gt;&lt;br /&gt;     for(i=0;i&amp;lt;Nnumero-1;i++)&lt;br /&gt;        factorial=factorial*(Nnumero-i);&lt;br /&gt;&lt;br /&gt;cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; El factorial del numero : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;Nnumero&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; es : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;factorial&amp;lt;&amp;lt;endl;&lt;br /&gt;system(&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;pause&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;);&lt;br /&gt;system(“cls”);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/*	Programa #9&lt;br /&gt;Acarigua 16-04-2008&lt;br /&gt;&lt;br /&gt;  Leer un numero natural averiguar cuantos números &lt;br /&gt;  pares hay anteriores a el.&lt;br /&gt;  Nombre: Cesar Riera&lt;br /&gt;  Mención: Informática&lt;br /&gt;  Sección: 236		*/&lt;br /&gt;&lt;br /&gt;#include &amp;lt;iostream.h&gt;&lt;br /&gt;#include &amp;lt;stdlib.h&gt;&lt;br /&gt;int contador=0;&lt;br /&gt;int Nnumero=0;&lt;br /&gt;int aux=0;&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Escriba un numero : &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;;&lt;br /&gt;	cin&gt;&gt;Nnumero;&lt;br /&gt;	aux=Nnumero;&lt;br /&gt;	while(aux!=1)&lt;br /&gt;	{&lt;br /&gt;		Nnumero=Nnumero-1;&lt;br /&gt;	if(Nnumero %2==0)&lt;br /&gt;	{&lt;br /&gt;		contador++;&lt;br /&gt;	&lt;br /&gt;	}&lt;br /&gt;	aux--;&lt;br /&gt;	}&lt;br /&gt;	cout&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; Hay &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;contador&amp;lt;&amp;lt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot; numeros pares anteriores a el &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;system(&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;pause&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;);&lt;br /&gt;system(“cls”);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;</description>
      <link>http://www.programacionweb.net/usuarios/perfil/post.php?id=261</link>
      <category></category>
      <pubDate>Tue, 29 Apr 2008 05:05:14 +0000</pubDate>
    </item>    <item>
      <title>Soneto del buen código fuente</title>
      <description type='html'>Seguro que alguna vez que tenéis que modificar una aplicación y tiene un código horrible, más feo que una nevera por detrás, sobre el cual habéis pasado semanas maldiciendo.&lt;br /&gt;&lt;br /&gt;Y es que no cuesta tanto hacer las cosas bien, y es al código bien hecho al que dedico este poema:El código menos abyecto (1)&lt;br /&gt;sabiamente estructurado&lt;br /&gt;se programa relajado&lt;br /&gt;en un ambiente correcto&lt;br /&gt;&lt;br /&gt;Para que sea perfecto&lt;br /&gt;siempre estará comentado&lt;br /&gt;ni poco, ni demasiado&lt;br /&gt;y su tabulado recto&lt;br /&gt;&lt;br /&gt;Que se entienda a simple vista&lt;br /&gt;por cualquier ojeador&lt;br /&gt;o cualquier persona lista&lt;br /&gt;&lt;br /&gt;No es trabajo agotador&lt;br /&gt;y perdonarme que insista&lt;br /&gt;ser un buen programador(1) Abyecto: Despreciable, vil&lt;br /&gt;&lt;br /&gt;Atentamente: &lt;br /&gt;Fernando Díaz ( Fer&apos; ) - Programador </description>
      <link>http://www.programacionweb.net/usuarios/perfil/post.php?id=260</link>
      <category></category>
      <pubDate>Mon, 28 Apr 2008 17:02:57 +0000</pubDate>
    </item>    <item>
      <title>Todos Aprendemos</title>
      <description type='html'>Siempre estamos en el inmenso mudo de la información y encontrar un lugar organizado para publicarla siempre es gratificante.&lt;br /&gt;&lt;br /&gt;Gracias.</description>
      <link>http://www.programacionweb.net/usuarios/perfil/post.php?id=258</link>
      <category></category>
      <pubDate>Thu, 24 Apr 2008 00:26:48 +0000</pubDate>
    </item>    <item>
      <title>holas</title>
      <description type='html'>texto</description>
      <link>http://www.programacionweb.net/usuarios/perfil/post.php?id=257</link>
      <category></category>
      <pubDate>Wed, 23 Apr 2008 17:26:59 +0000</pubDate>
    </item>    <item>
      <title>Curso Ajax</title>
      <description type='html'>readyState (atributo)&lt;br /&gt;&lt;br /&gt;El atributo readyState devuelve el estadoactual del objeto XMLHttpRequest, cada vez que cambia el valor de readyState se lanza la funcion indicada en onreadystatechange&lt;br /&gt;&lt;br /&gt;Utilización&lt;br /&gt;iEstado = oXMLHttpRequest.readyState;&lt;br /&gt;&lt;br /&gt;    iEstado - Estado actual del objeto&lt;br /&gt;&lt;br /&gt;        0 - Sin inicializar, siempre será:&lt;br /&gt;        1 - Abierto (acaba de llamar open)&lt;br /&gt;        2 - Enviado&lt;br /&gt;        3 - Recibiendo&lt;br /&gt;        4 - A punto&lt;br /&gt;&lt;br /&gt;    oXMLHttpRequest - Objeto XMLHttpRequest &lt;br /&gt;&lt;br /&gt;La propiedad readyState se utiliza en todas las comunicaciones asíncronas para comprovar que podemos acceder ya a atributos como responseXML y responseText, sólo accesibles en los estados 3 y 4.&lt;br /&gt;&lt;br /&gt;Ejemplo&lt;br /&gt;Habiendo creado el objeto XMLHttpRequest oXMLHttpRequest previamente haremos que nos alerte el texto recibido en modo asíncrono.&lt;br /&gt; &lt;br /&gt; 000 &lt;br /&gt; 001 &lt;br /&gt; 002 &lt;br /&gt; 003 &lt;br /&gt; 004 &lt;br /&gt; 005 &lt;br /&gt; 006 &lt;br /&gt; 007 &lt;br /&gt; 008 &lt;br /&gt; 009 &lt;br /&gt; 010 &lt;br /&gt; 011 &lt;br /&gt; 012 &lt;br /&gt;	&lt;br /&gt;&amp;lt;script language=&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;JavaScript&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&gt; &lt;br /&gt;// Creamos la función &lt;br /&gt;function fFuncion () { &lt;br /&gt; // Si el estado es &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;A punto&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;\&lt;/span&gt;&quot;&lt;br /&gt; if ( oXMLHttpRequest.readyState  == 4) {&lt;br /&gt;  // Alertamos el texto&lt;br /&gt;  alert ( oXMLHttpRequest.responseText );&lt;br /&gt; } &lt;br /&gt;} &lt;br /&gt;// &lt;br /&gt;// Definimos la función handler del evento &lt;br /&gt;oXMLHttpRequest.onreadystatechange = fFuncion; &lt;br /&gt;&amp;lt;/script&gt; &lt;br /&gt;</description>
      <link>http://www.programacionweb.net/usuarios/perfil/post.php?id=256</link>
      <category></category>
      <pubDate>Mon, 21 Apr 2008 19:32:26 +0000</pubDate>
    </item>    <item>
      <title>Nuevo Directorio</title>
      <description type='html'>Escribo este post para destacar la creación del nuevo directorio para la comunidad.&lt;br /&gt;&lt;br /&gt;El alta es completamente gratis, y no requiere reciproco. (Se agradece alguno).&lt;br /&gt;&lt;br /&gt;Pues eso, sin más os pongo la dirección:&lt;br /&gt;&lt;br /&gt;www.directorio-web.com.es </description>
      <link>http://www.programacionweb.net/usuarios/perfil/post.php?id=255</link>
      <category></category>
      <pubDate>Sat, 19 Apr 2008 15:58:15 +0000</pubDate>
    </item>    <item>
      <title>Saca partido a tus viajes</title>
      <description type='html'>Hace tiempo encontre una pagina la cual me ofrecia &quot;ganar dinero&quot; si realizaba opiniones, subia fotos y compartia mis viajes en al comunidad. Demasiado facil para ser cierto, pero esto no se comprueba hasta que uno no esta dentro de la comunidad. Es verdad que detras de esta facilidad hay muchos otros factores, el mas importante es el que busca la página: la calidad. Lo bueno (o lo malo segun se mire) es que la calidad esta guiada por los usuarios de mayor &quot;rango&quot;, siempre tendras alguien que tenga mas experiencia para poder tutorizarte sobre cualquier cosa que añadas.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;En Trivago podemos encontrar varias funciones a la hora de ser usuario, las mas destacadas y usadas son: &lt;br /&gt;&lt;br /&gt;Añadir opiniones sobre hoteles, sitios visitados, atracciones, comunidades... de todo el mundo, algo que ayuda mcuho al viajero que busca información&lt;br /&gt; &lt;br /&gt;Añadir fotos de los hoteles, monumentos, atracciones, calles mas destacadas... de todos los lugares que hemos podido visitar. Que mejor que poder ver una imagen de cualquier compañero en una visita a Paris por ejemplo que ver la foto de estudio que nunca podremos sacar.&lt;br /&gt; &lt;br /&gt;Añadir enlaces de páginas web que nos ayudaron en la busqueda de informacion sobre una región, una ciudad, un país o simplemente sobre cualquier atracción turistica. &lt;br /&gt;&lt;br /&gt;Añadir articulos de opinión de paginas web o de revistas que conozcamos los cuales opinen sobre la atraccion turistica, la ciudad, el restaurante... &lt;br /&gt;&lt;br /&gt;Añadir hoteles, o en su defecto modificar las caracteristicas que hay en el hotel ya que asi podremos llevar mas a la realidad al comprador potencial. &lt;br /&gt;&lt;br /&gt;Añadir guias de viaje, muchas veces nos &quot;curramos&quot; un viaje sobre una zona y nos dejamos la piel en crearnos nuestra propia guia de viaje, esto lo podemos encontrar aqui o mismamente podemos subir la nuestra.&lt;br /&gt;&lt;br /&gt;Todas estas opciones se les suman muchas otras que nos hacen ir sumando puntos y acumulando dinero, el cual podemos canjear una vez que superemos el minimo de 25€ (algo sencillo para alguien medianamente activo en la comunidad).&lt;br /&gt;&lt;br /&gt;Tambien tenemos la opcion de invitar a nuestros amigos y asi llevarnos tambien hasta el 30% de las acciones que generen durante toda su estancia por Trivago. &lt;br /&gt;&lt;br /&gt;Solo recordaros que esta comunidad es joven y está en pleno crecimiento con lo que es buena opcion en comparaciñon con las plataformas similares que están sobre explotadas y no tienen tanta familiaridad como esta.&lt;br /&gt;&lt;br /&gt;Un saludo y buen Viaje&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description>
      <link>http://www.programacionweb.net/usuarios/perfil/post.php?id=248</link>
      <category></category>
      <pubDate>Sat, 12 Apr 2008 14:03:50 +0000</pubDate>
    </item>    <item>
      <title>Welcome</title>
      <description type='html'>Mi nuevo BLOG!</description>
      <link>http://www.programacionweb.net/usuarios/perfil/post.php?id=247</link>
      <category></category>
      <pubDate>Fri, 11 Apr 2008 22:09:56 +0000</pubDate>
    </item>    <item>
      <title>Navacerrada, ese gran desconocido.</title>
      <description type='html'>Hola.&lt;br /&gt;&lt;br /&gt;Ayer pasé el día en Navacerrada con unos amigos, un día de esos que no sabes que hacer y decides tomar la carretera como destino.&lt;br /&gt;&lt;br /&gt;Navacerrada es un lugar de la sierra madrileña donde puedes encontrar bellas atracciones y sobre todo mucho campo por donde caminar. Pero no un campo cualquiera, un campo perfecto para el senderismo y perderse por su interior.&lt;br /&gt;&lt;br /&gt;La realidad es que al final nos encaminamos al Puerto de Navacerrada, antigua zona de ski que ha pasado a reserva natural.&lt;br /&gt;&lt;br /&gt;Os dejo enlaces a dos fotografías, una en verano y otra en invierno, para que podáis admirar la belleza del lugar.&lt;br /&gt;&lt;br /&gt;Un día de senderismo, acompañado por una buena comida en el restaurante del Puerto... todo un emblema en la zona.&lt;br /&gt;&lt;br /&gt;Casi nos quedamos a dormir en Navacerrada en alguno de los alojamientos que tiene, pero al final decidimos volver porque hay Formula 1 y no hay que dejar de animar a Alonso!.&lt;br /&gt;&lt;br /&gt;</description>
      <link>http://www.programacionweb.net/usuarios/perfil/post.php?id=245</link>
      <category></category>
      <pubDate>Sun, 06 Apr 2008 09:21:54 +0000</pubDate>
    </item>    <item>
      <title>La primera página web de la história</title>
      <description type='html'>No situamos a finales de 1990, en el CERN ( Suiza ) Tim Berners-Lee conocía la importancia de poder transmitir documentos de hipertexto de forma sencilla y tenía listos todos los componentes necesarios para montar la primera página web de la historia.&lt;br /&gt;&lt;br /&gt;Un ordenador NeXT conectado a Internet bajo la dirección nxoc01.cern.ch, el primer servidor web del mundo y el primer navegador / editor de hipertexto.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Tim había creado WorldWideWeb, un navegador a la vez que editor web para NeXT con el que ya había realizado los primeros accesos a una página web en local ( file:/hypertext/WWW/TheProject.html ) .&lt;br /&gt;&lt;br /&gt;Lejos de lo que cabe pensar, estos primeros accesos no fueron con un navegador de texto ( esos aparecieron poco más tarde para extender el WWW a otras plataformas ), WorldWideWeb además de ver y editar hipertexto, era capaz de usar hojas de estilo básicas, descargar y abrir archivos, navegar grupos de noticias, corregir textos...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;http://nxoc01.cern.ch/hypertext/WWW/TheProject.html (ya no disponible ) fue la primera dirección de una página web de la historia ( ver una copia de esa primea página ) con un código fuente no tan diferente al que usamos hoy día:&amp;lt;HEADER&gt;&lt;br /&gt;&amp;lt;TITLE&gt;The World Wide Web project&amp;lt;/TITLE&gt;&lt;br /&gt;&amp;lt;NEXTID N=&quot;55&quot;&gt;&lt;br /&gt;&amp;lt;/HEADER&gt;&lt;br /&gt;&amp;lt;BODY&gt;&lt;br /&gt;&amp;lt;H1&gt;World Wide Web&amp;lt;/H1&gt;The WorldWideWeb (W3) is a wide-area&amp;lt;A&lt;br /&gt;NAME=0 HREF=&quot;WhatIs.html&quot;&gt;&lt;br /&gt;hypermedia&amp;lt;/A&gt; information retrieval&lt;br /&gt;initiative aiming to give universal&lt;br /&gt;access to a large universe of documents.&amp;lt;P&gt;&lt;br /&gt;Everything there is online about&lt;br /&gt;W3 is linked directly or indirectly&lt;br /&gt;to this document, including an &amp;lt;A&lt;br /&gt;NAME=24 HREF=&quot;Summary.html&quot;&gt;executive&lt;br /&gt;summary&amp;lt;/A&gt; of the project, &amp;lt;A&lt;br /&gt;NAME=29 HREF=&quot;Administration/Mailing/Overview.html&quot;&gt;Mailing lists&amp;lt;/A&gt;&lt;br /&gt;&lt;br /&gt;, &amp;lt;A&lt;br /&gt;NAME=30 HREF=&quot;Policy.html&quot;&gt;Policy&amp;lt;/A&gt; , November&apos;s  &amp;lt;A&lt;br /&gt;NAME=34 HREF=&quot;News/9211.html&quot;&gt;W3  news&amp;lt;/A&gt; ,&lt;br /&gt;&amp;lt;A&lt;br /&gt;NAME=41 HREF=&quot;FAQ/List.html&quot;&gt;Frequently Asked Questions&amp;lt;/A&gt; .&lt;br /&gt;&amp;lt;DL&gt;&lt;br /&gt;&amp;lt;DT&gt;&amp;lt;A&lt;br /&gt;NAME=44 HREF=&quot;../DataSources/Top.html&quot;&gt;What&apos;s out there?&amp;lt;/A&gt;&lt;br /&gt;&amp;lt;DD&gt; Pointers to the&lt;br /&gt;world&apos;s online information,&amp;lt;A&lt;br /&gt;NAME=45 HREF=&quot;../DataSources/bySubject/Overview.html&quot;&gt; subjects&amp;lt;/A&gt;&lt;br /&gt;&lt;br /&gt;, &amp;lt;A&lt;br /&gt;NAME=z54 HREF=&quot;../DataSources/WWW/Servers.html&quot;&gt;W3 servers&amp;lt;/A&gt;, etc.&lt;br /&gt;&amp;lt;DT&gt;&amp;lt;A&lt;br /&gt;NAME=46 HREF=&quot;Help.html&quot;&gt;Help&amp;lt;/A&gt;&lt;br /&gt;&amp;lt;DD&gt; on the browser you are using&lt;br /&gt;&amp;lt;DT&gt;&amp;lt;A&lt;br /&gt;NAME=13 HREF=&quot;Status.html&quot;&gt;Software Products&amp;lt;/A&gt;&lt;br /&gt;&amp;lt;DD&gt; A list of W3 project&lt;br /&gt;components and their current state.&lt;br /&gt;(e.g. &amp;lt;A&lt;br /&gt;NAME=27 HREF=&quot;LineMode/Browser.html&quot;&gt;Line Mode&amp;lt;/A&gt; ,X11 &amp;lt;A&lt;br /&gt;NAME=35 HREF=&quot;Status.html#35&quot;&gt;Viola&amp;lt;/A&gt; ,  &amp;lt;A&lt;br /&gt;NAME=26 HREF=&quot;NeXT/WorldWideWeb.html&quot;&gt;NeXTStep&amp;lt;/A&gt;&lt;br /&gt;&lt;br /&gt;, &amp;lt;A&lt;br /&gt;NAME=25 HREF=&quot;Daemon/Overview.html&quot;&gt;Servers&amp;lt;/A&gt; , &amp;lt;A&lt;br /&gt;NAME=51 HREF=&quot;Tools/Overview.html&quot;&gt;Tools&amp;lt;/A&gt; ,&amp;lt;A&lt;br /&gt;NAME=53 HREF=&quot;MailRobot/Overview.html&quot;&gt; Mail robot&amp;lt;/A&gt; ,&amp;lt;A&lt;br /&gt;NAME=52 HREF=&quot;Status.html#57&quot;&gt;&lt;br /&gt;Library&amp;lt;/A&gt; )&lt;br /&gt;&amp;lt;DT&gt;&amp;lt;A&lt;br /&gt;NAME=47 HREF=&quot;Technical.html&quot;&gt;Technical&amp;lt;/A&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;DD&gt; Details of protocols, formats,&lt;br /&gt;program internals etc&lt;br /&gt;&amp;lt;DT&gt;&amp;lt;A&lt;br /&gt;NAME=40 HREF=&quot;Bibliography.html&quot;&gt;Bibliography&amp;lt;/A&gt;&lt;br /&gt;&amp;lt;DD&gt; Paper documentation&lt;br /&gt;on  W3 and references.&lt;br /&gt;&amp;lt;DT&gt;&amp;lt;A&lt;br /&gt;NAME=14 HREF=&quot;People.html&quot;&gt;People&amp;lt;/A&gt;&lt;br /&gt;&amp;lt;DD&gt; A list of some people involved&lt;br /&gt;in the project.&lt;br /&gt;&amp;lt;DT&gt;&amp;lt;A&lt;br /&gt;NAME=15 HREF=&quot;History.html&quot;&gt;History&amp;lt;/A&gt;&lt;br /&gt;&amp;lt;DD&gt; A summary of the history&lt;br /&gt;of the project.&lt;br /&gt;&amp;lt;DT&gt;&amp;lt;A&lt;br /&gt;NAME=37 HREF=&quot;Helping.html&quot;&gt;How can I help&amp;lt;/A&gt; ?&lt;br /&gt;&lt;br /&gt;&amp;lt;DD&gt; If you would like&lt;br /&gt;to support the web..&lt;br /&gt;&amp;lt;DT&gt;&amp;lt;A&lt;br /&gt;NAME=48 HREF=&quot;../README.html&quot;&gt;Getting code&amp;lt;/A&gt;&lt;br /&gt;&amp;lt;DD&gt; Getting the code by&amp;lt;A&lt;br /&gt;NAME=49 HREF=&quot;LineMode/Defaults/Distribution.html&quot;&gt;&lt;br /&gt;anonymous FTP&amp;lt;/A&gt; , etc.&amp;lt;/A&gt;&lt;br /&gt;&amp;lt;/DL&gt;&lt;br /&gt;&amp;lt;/BODY&gt;&lt;br /&gt;</description>
      <link>http://www.programacionweb.net/usuarios/perfil/post.php?id=242</link>
      <category></category>
      <pubDate>Thu, 03 Apr 2008 16:46:40 +0000</pubDate>
    </item>  </channel> 
</rss>
