<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Tipos de arreglos presentado por Elian Rios y Alianis Aguilar by Elian Rios</title>
      <link>https://padlet.com/elianrios754/chztp6jshmt47lwc</link>
      <description>Un arreglo: es un conjunto de datos o una estructura de datos homogéneos que se encuentran ubicados en forma consecutiva en la memoria RAM.</description>
      <language>en-us</language>
      <pubDate>2022-04-04 21:42:16 UTC</pubDate>
      <lastBuildDate>2022-04-04 23:44:30 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title></title>
         <author>elianrios754</author>
         <link>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129550693</link>
         <description><![CDATA[<div>se define como una colección finita, homogénea y ordenada de elementos como se ha definido antes pero se caracteriza por ser <strong>unidimensional</strong> porque tiene una solo dimensión como se muestra a continuación.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-04-04 22:25:57 UTC</pubDate>
         <guid>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129550693</guid>
      </item>
      <item>
         <title>Caracteristicas</title>
         <author>elianrios754</author>
         <link>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129551461</link>
         <description><![CDATA[<div>son tablas de valores. Cada elemento de un <strong>arreglo bidimensional</strong> está simultáneamente en una fila y en una columna. En matemáticas, a los <strong>arreglos bidimensionales</strong> se les llama matrices, y son muy utilizados en problemas de Ingeniería.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-04-04 22:26:53 UTC</pubDate>
         <guid>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129551461</guid>
      </item>
      <item>
         <title>Sintaxis</title>
         <author>elianrios754</author>
         <link>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129551714</link>
         <description><![CDATA[<div>La <strong>sintaxis</strong> a emplear es la siguiente: tipoDeElementosDelArray nombreDelArray [numeroElementos]</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-04-04 22:27:09 UTC</pubDate>
         <guid>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129551714</guid>
      </item>
      <item>
         <title>Ejemplo</title>
         <author>elianrios754</author>
         <link>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129552516</link>
         <description><![CDATA[<div>&nbsp;#include &lt;stdio.h&gt;<br>&nbsp;#include &lt;stdlib.h&gt;<br>&nbsp;<br>&nbsp;#define NMAXALUMNOS 100<br>&nbsp;<br>&nbsp;<strong>int main() {</strong><br>&nbsp; &nbsp; &nbsp;int i=0; double nota[NMAXALUMNOS];&nbsp; &nbsp; &nbsp;double suma=0.0; double media=0.0;<br>&nbsp; &nbsp; &nbsp;FILE* fichero; // Ejercicios resueltos aprenderaprogramar.com<br>&nbsp; &nbsp; &nbsp;fichero = fopen("notas.dat", "rt");<br>&nbsp; &nbsp; &nbsp;fscanf (fichero, "%lf", &amp;nota[i]);<br>&nbsp; &nbsp; &nbsp;do {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;suma = suma + nota[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; i = i+1; //Valor final de i será el número de alumnos<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fscanf (fichero, "%lf", &amp;nota[i]);<br>&nbsp; &nbsp; &nbsp;} while (nota[i]!=-50);<br>&nbsp; &nbsp; &nbsp;fclose(fichero);<br>&nbsp; &nbsp; &nbsp;media = suma/i;<br>&nbsp; &nbsp; &nbsp;printf ("La media es %lf", media);<br>&nbsp; &nbsp; &nbsp;return 0;<br><strong>}</strong></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-04-04 22:28:06 UTC</pubDate>
         <guid>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129552516</guid>
      </item>
      <item>
         <title></title>
         <author>elianrios754</author>
         <link>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129554195</link>
         <description><![CDATA[<div>Son tablas de valores. Cada elemento de un <strong>arreglo bidimensional</strong> está simultáneamente en una fila y en una columna. En matemáticas, a los <strong>arreglos bidimensionales</strong> se les llama matrices, y son muy utilizados en problemas de Ingeniería.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-04-04 22:30:08 UTC</pubDate>
         <guid>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129554195</guid>
      </item>
      <item>
         <title>Caracteriticas</title>
         <author>elianrios754</author>
         <link>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129558066</link>
         <description><![CDATA[<div>Un arreglo unidimensional se caracteriza por modelar listas de elementos iguales. Arreglos se define como una colección finita, homogénea y ordenada de elementos.<br><br>HOMOGENEAS: Todos los elementos deben ser del mismo tipo.<br><br>ORDENADAS: Debe haber un prmier elemento, un segundo elemento y asi sucesivamente<br><br>FINITA: Debe determinarse cuál será el número máximo de elementos que podrán formar parte del arreglo.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-04-04 22:35:02 UTC</pubDate>
         <guid>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129558066</guid>
      </item>
      <item>
         <title>Sintaxis</title>
         <author>elianrios754</author>
         <link>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129559424</link>
         <description><![CDATA[<div>Su sintaxis es la siguiente:<br>Tipo de dato Nombre de la variable [dimensión1][dimension2]; Donde: Tipo de dato, es cualquier tipo de dato valido en C. Nombre de la variable, el nombre que se le dará al <strong>arreglo</strong>. Dimensión1, el número de elementos que contendrá el <strong>arreglo</strong> (renglones) .</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-04-04 22:36:52 UTC</pubDate>
         <guid>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129559424</guid>
      </item>
      <item>
         <title>Ejemplo</title>
         <author>elianrios754</author>
         <link>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129560944</link>
         <description><![CDATA[<div>RESUELTOS (Matrices y Fuciones)&nbsp;</div><div>#include &lt;iostream.h&gt;&nbsp;</div><div>#include &lt;conio.h&gt;&nbsp;</div><div>#include &lt;iomanip.h&gt;&nbsp;</div><div>&nbsp;void main(){&nbsp;</div><div>&nbsp;int m[3][4],f,c,cpos=0,sumpar=0;&nbsp;</div><div>&nbsp;float prom=0,porc=0,sum=0;&nbsp;</div><div>&nbsp;clrscr();&nbsp;</div><div>&nbsp;cout&lt;&lt;"Ingrese datos: ";&nbsp;</div><div>&nbsp;for(f=0;f&lt;3;f++){&nbsp;</div><div>&nbsp;for(c=0;c&lt;4;c++){&nbsp;</div><div>&nbsp;cin&gt;&gt;m[f][c];&nbsp;</div><div>&nbsp;sum=sum+m[f][c];&nbsp;</div><div>&nbsp;if(m[f][c] &gt; 0){&nbsp;</div><div>&nbsp;cpos=cpos+1;&nbsp;</div><div>&nbsp;}&nbsp;</div><div>&nbsp;if((m[f][c]%2)==0){&nbsp;</div><div>&nbsp;sumpar=sumpar+m[f][c];&nbsp;</div><div>&nbsp;}&nbsp;</div><div>&nbsp;}&nbsp;</div><div>&nbsp;}&nbsp;</div><div>&nbsp;prom=sum/12;&nbsp;</div><div>// Se calcula el promedio general</div><div>&nbsp;porc=(cpos*100)/12;&nbsp;</div><div>// Se calcula el porcentaje de positivos</div><div>&nbsp;cout&lt;&lt;"Los N ingresados en la matriz son: "&lt;&lt;endl&lt;&lt;endl;&nbsp;</div><div>&nbsp;for(f=0;f&lt;3;f++){&nbsp;</div><div>&nbsp;for(c=0;c&lt;4;c++){&nbsp;</div><div>&nbsp;cout&lt;&lt;m[f][c];&nbsp;</div><div>&nbsp;}&nbsp;</div><div>&nbsp;cout&lt;&lt;endl;&nbsp;</div><div>&nbsp;}&nbsp;</div><div>&nbsp;cout&lt;&lt;endl&lt;&lt;"El Promedio general es: "&lt;&lt;setprecision(2)&lt;&lt;prom;&nbsp;</div><div>&nbsp;cout&lt;&lt;endl&lt;&lt;"El porcentaje de positivos es: "&lt;&lt;porc&lt;&lt;" % ";&nbsp;</div><div>&nbsp;cout&lt;&lt;endl&lt;&lt;"La sumatoria de los pares es: "&lt;&lt;sumpar;&nbsp;</div><div>&nbsp;getch();&nbsp;</div><div>&nbsp;}&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-04-04 22:38:19 UTC</pubDate>
         <guid>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129560944</guid>
      </item>
      <item>
         <title></title>
         <author>elianrios754</author>
         <link>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129561650</link>
         <description><![CDATA[<div>Es la representación de tablas de valores, consistiendo de información arreglada en renglones y columnas. Para identificar un elemento particular de la tabla, deberemos de especificar dos subíndices; el primero identifica el renglón del elemento y el segundo identifica la columna del elemento</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-04-04 22:39:09 UTC</pubDate>
         <guid>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129561650</guid>
      </item>
      <item>
         <title>Caracteristicas</title>
         <author>elianrios754</author>
         <link>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129563836</link>
         <description><![CDATA[<div>Los arreglos multidimensionales son una ampliación de las matrices de dos dimensiones y utilizan subíndices adicionales para la indexación. Un arreglo 3D, por ejemplo, utiliza tres subíndices. Los dos primeros son como una matriz, pero la tercera dimensión representa <em>páginas</em> u <em>hojas</em> de elementos.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-04-04 22:41:52 UTC</pubDate>
         <guid>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129563836</guid>
      </item>
      <item>
         <title>Sintaxis</title>
         <author>elianrios754</author>
         <link>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129565677</link>
         <description><![CDATA[<div>&lt;tipo&gt; [ , …] &lt; identificador &gt; ;<br><br></div><div>Donde:<br><br></div><div>tipo indica el tipo correspondiente a los elementos del arreglo ,<br><br></div><div>identificador es el nombre del arreglo, y<br><br></div><div>el par de corchetes, la coma y las diéresis, [ , …], representan las dimensiones del arreglo. Los corchetes encierran todas las comas necesarias para separar las dimensiones del arreglo.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-04-04 22:44:06 UTC</pubDate>
         <guid>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129565677</guid>
      </item>
      <item>
         <title>Ejemplo</title>
         <author>elianrios754</author>
         <link>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129567031</link>
         <description><![CDATA[<div>double [ , ] bidim; // Dos dimensiones.<br><br></div><div>int [ , , ] tridim ; // Tres dimensiones.<br><br></div><div>char [ , , , ] enciclopedia; // Cuatro dimensiones.<br><br></div><div>Observe que, en la declaración, el espacio entre los corchetes está vacío. Esto se debe a que, durante dicha operación, no se reserva espacio en la memoria.<br><br></div><div>Creación.<br><br></div><div>La creación de un arreglo multidimensional consiste en reservar espacio en la memoria para todos sus elementos, utilizando la siguiente sintaxis:<br><br></div><div>&lt; identificador &gt; = new &lt;tipo&gt; [ dim1, dim2 … dimN ] ;<br><br></div><div>Donde:<br><br></div><div>new es el operador para gestionar espacio de memoria, en tiempo de ejecución,<br><br></div><div>dim1 , dim2 , dimN son valores enteros que representan las dimensiones del arreglo.<br><br></div><div>El tamaño del arreglo es el resultado de multiplicar los valores de las dimensiones y representa el número de elementos del arreglo.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-04-04 22:45:42 UTC</pubDate>
         <guid>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129567031</guid>
      </item>
      <item>
         <title></title>
         <author>elianrios754</author>
         <link>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129569665</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://image.slidesharecdn.com/16arreglosunidimensionalesjava-130611131106-phpapp02/95/16-curso-de-poo-en-java-arreglos-unidimensionales-6-638.jpg?cb=1394801484" />
         <pubDate>2022-04-04 22:49:17 UTC</pubDate>
         <guid>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129569665</guid>
      </item>
      <item>
         <title></title>
         <author>elianrios754</author>
         <link>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129569768</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://lucho.com.pe/wp-content/uploads/2018/06/matriz.jpg" />
         <pubDate>2022-04-04 22:49:25 UTC</pubDate>
         <guid>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129569768</guid>
      </item>
      <item>
         <title></title>
         <author>elianrios754</author>
         <link>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129576182</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://i.ytimg.com/vi/yn5OYxumfbc/maxresdefault.jpg" />
         <pubDate>2022-04-04 22:57:35 UTC</pubDate>
         <guid>https://padlet.com/elianrios754/chztp6jshmt47lwc/wish/2129576182</guid>
      </item>
   </channel>
</rss>
