<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:gd="http://schemas.google.com/g/2005" xmlns:georss="http://www.georss.org/georss" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-1177411703097751229</atom:id><lastBuildDate>Thu, 19 Dec 2024 03:18:18 +0000</lastBuildDate><category>Pascal</category><category>Interessante</category><category>Update Now</category><category>Downloads</category><category>Eventos</category><category>Visualg</category><category>Tutoriais</category><category>Cursos</category><category>I</category><category>Licenciatura</category><title>Computação TOP10</title><description>Blog de Licenciandos em Computação que traz várias novidades na área de tecnologia.</description><link>http://computacaotop10.blogspot.com/</link><managingEditor>noreply@blogger.com (Computação Top10)</managingEditor><generator>Blogger</generator><openSearch:totalResults>124</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><language>en-us</language><itunes:explicit>no</itunes:explicit><itunes:subtitle>Blog de Licenciandos em Computação que traz várias novidades na área de tecnologia.</itunes:subtitle><itunes:owner><itunes:email>noreply@blogger.com</itunes:email></itunes:owner><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-4576712119155083985</guid><pubDate>Tue, 01 Nov 2011 00:00:00 +0000</pubDate><atom:updated>2011-10-31T23:47:35.768-03:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Pascal</category><title>Pascal: Recursividade</title><description>&lt;span class="Apple-style-span" style="background-color: white; font-family: monospace; font-size: 13px; line-height: 19px;"&gt;&lt;strong class="bbc" style="font-weight: bold !important;"&gt;program&lt;/strong&gt;&amp;nbsp;teste;&lt;br /&gt;
&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;uses&lt;/strong&gt;&amp;nbsp;crt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;var&lt;/strong&gt;&lt;br /&gt;
ft:integer;&lt;br /&gt;
&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;function&lt;/strong&gt;&amp;nbsp;fat(n:integer):real;&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;begin&lt;/strong&gt;&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;if&lt;/strong&gt;(n = 0)&lt;strong class="bbc" style="font-weight: bold !important;"&gt;then&lt;/strong&gt;&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;begin&lt;/strong&gt;&lt;br /&gt;
fat:=1;&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;end&lt;/strong&gt;&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;else&lt;/strong&gt;&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;begin&lt;/strong&gt;&lt;br /&gt;
fat:=n*fat(n-1);&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;end;&lt;/strong&gt;&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;end;&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;begin&lt;/strong&gt;&lt;br /&gt;
clrscr;&lt;br /&gt;
write('Digite a fatorial:'); read(ft); writeln;&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;if&lt;/strong&gt;(ft &amp;lt; 0)&lt;strong class="bbc" style="font-weight: bold !important;"&gt;then&lt;/strong&gt;&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;begin&lt;/strong&gt;&lt;br /&gt;
writeln('Numero invalido!');&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;end&lt;/strong&gt;&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;else&lt;/strong&gt;&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;begin&lt;/strong&gt;&lt;br /&gt;
writeln('Fatorial de ',ft,' = ',fat(ft):1:0);&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;end;&lt;/strong&gt;&lt;br /&gt;
readkey;&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;end.&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: monospace; font-size: 13px; line-height: 19px;"&gt;&lt;strong class="bbc" style="font-weight: bold !important;"&gt;&lt;br /&gt;
&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: arial, verdana, tahoma, sans-serif; font-size: 13px; line-height: 19px;"&gt;Vamos a explicação.&lt;br /&gt;
&lt;br /&gt;
function fat(n:integer):real;&lt;br /&gt;
begin&lt;br /&gt;
if(n = 0)&lt;br /&gt;
then fat:=1;&lt;br /&gt;
else fat:=n*fat(n-1);&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
Fat(5)&lt;br /&gt;
5*Fat(4)&lt;br /&gt;
4*Fat(3)&lt;br /&gt;
3*Fat(2)&lt;br /&gt;
2*Fat(1)&lt;br /&gt;
1*Fat(0) - iteração não necessária, poderia-se alterar a condição do If para n=1, pois fat(0) e fat(1) tem o mesmo valor.&lt;br /&gt;
&lt;br /&gt;
Observe que na primeira iteração, estou mandando o 5 para a variável N DA função fat, no IF a função verifica que N não é igual a zero, portanto vai para o ELSE, fazendo o seguinte 5*Fat(4) (n*fat(n-1)), isso se repete até o fim, quando a condição do IF for verdadeira, os valores serão devolvidos ao local que foram chamados, começando de baixo para cima&lt;br /&gt;
&lt;br /&gt;
&lt;strong class="bbc" style="font-weight: bold !important;"&gt;Fat(5)&lt;/strong&gt;&amp;nbsp;= 120.&lt;br /&gt;
5*&lt;strong class="bbc" style="font-weight: bold !important;"&gt;Fat(4)&lt;/strong&gt;&amp;nbsp;= 5*24 = 120, envia 120 para a linha de cima&lt;br /&gt;
4*&lt;strong class="bbc" style="font-weight: bold !important;"&gt;Fat(3)&lt;/strong&gt;&amp;nbsp;= 4*6 = 24, envia 24 para a linha de cima&lt;br /&gt;
3*&lt;strong class="bbc" style="font-weight: bold !important;"&gt;Fat(2)&lt;/strong&gt;&amp;nbsp;= 3*2 = 6, envia 6 para a linha de cima&lt;br /&gt;
2*&lt;strong class="bbc" style="font-weight: bold !important;"&gt;Fat(1)&lt;/strong&gt;&amp;nbsp;= 2*1 = 2, envia 2 para a linha de cima&lt;br /&gt;
1*Fat(0) = 1, envia 1 para a linha de cima&lt;/span&gt;</description><link>http://computacaotop10.blogspot.com/2011/10/pascal-recursividade.html</link><author>noreply@blogger.com (Amauri)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-7516177260820423678</guid><pubDate>Sat, 29 Oct 2011 22:38:00 +0000</pubDate><atom:updated>2011-10-31T23:48:07.372-03:00</atom:updated><title>Microsoft prevê o futuro da tecnologia</title><description>&lt;span class="Apple-style-span" style="color: #333333; font-family: arial; font-size: 15px; line-height: 22px;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="border-bottom-style: none; border-color: initial; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; border-width: initial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;iframe allowfullscreen='allowfullscreen' webkitallowfullscreen='webkitallowfullscreen' mozallowfullscreen='mozallowfullscreen' width='320' height='266' src='https://www.youtube.com/embed/a6cNdhOKwi0?feature=player_embedded' frameborder='0'&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;A Microsoft divulgou um vídeo com sua visão de como será o futuro da tecnologia entre os próximos 5 a 10 anos.&lt;/span&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; border-width: initial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; border-width: initial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;Segundo a&amp;nbsp;&lt;strong style="border-bottom-style: none; border-color: initial; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; border-width: initial; font-weight: bold; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;a href="http://www.officelabs.com/productivityfuturevision" style="border-bottom-style: none; border-color: initial; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; border-width: initial; color: #007ca5; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;Microsoft&lt;/a&gt;&lt;/strong&gt;, futuramente qualquer objeto poderá funcionar como uma tela tátil, como o exemplo utilizado com vidros das janelas de táxis que indicam o horário e o local de destino quando o mesmo estivesse à vista.&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #333333; font-family: Arial, Helvetica, sans-serif; line-height: 22px;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="border-bottom-style: none; border-color: initial; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; border-width: initial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #333333; font-family: Arial, Helvetica, sans-serif; line-height: 22px;"&gt;A empresa também exibe óculos especiais capazes de traduzir informações turísticas ao usuário em tempo real.&lt;/span&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; border-width: initial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; border-width: initial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #333333; font-family: Arial, Helvetica, sans-serif; line-height: 22px;"&gt;No vídeo também é possível observar a evolução imaginada pela Microsoft para os tablets e smartphones. Os aparelhos possuirão telas dobráveis e serão do tamanho de um cartão de crédito.&lt;/span&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; border-width: initial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; border-width: initial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #333333; font-family: Arial, Helvetica, sans-serif; line-height: 22px;"&gt;A funcionalidade desses dispositivos também irá mudar. Eles poderão ser utilizados como ferramentas de gestão de comunicação que interagem com as informações ao redor.&lt;/span&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; border-width: initial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; border-width: initial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #333333; font-family: Arial, Helvetica, sans-serif; line-height: 22px;"&gt;Já para ambientes fechados a Microsoft agregou as tecnologias inteligentes às mesas e geladeiras, além de uma nova forma de escritório, com possibilidade de maior interação entre empresa e funcionários.&lt;/span&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; border-width: initial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; border-width: initial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #333333; line-height: 22px;"&gt;A empresa afirma que todas essas ferramentas ainda não estão disponíveis, porém estão em fase de pesquisas e desenvolvimento pela Microsoft e empresas parceiras.&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #333333; line-height: 22px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;&lt;span class="Apple-style-span" style="color: #333333; line-height: 22px;"&gt;fonte:&amp;nbsp;&lt;/span&gt;&lt;a href="http://info.abril.com.br/"&gt;http://info.abril.com.br&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #333333; line-height: 22px;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;&lt;span class="Apple-style-span" style="color: #333333; font-family: arial; font-size: 15px; line-height: 22px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;/div&gt;</description><link>http://computacaotop10.blogspot.com/2011/10/microsoft-preve-o-futuro-da-tecnologia.html</link><author>noreply@blogger.com (Amauri)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-1238041755185122841</guid><pubDate>Fri, 28 Oct 2011 22:47:00 +0000</pubDate><atom:updated>2011-10-28T19:47:35.122-03:00</atom:updated><title>Já estava na hora de termos um regulamento que favoreça os consumidores de banda larga</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: lime;"&gt;Concessionárias de banda larga terão de obedecer velocidade minima e média&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg16BHeHk6qh2rpYYgivbI3aYS6uORmcPVIGfeHV8rSzYPwJHsVWmWgVn1NV34oAoylXmx7M0MbzRoj4HPADjq9ZcSPlhdNGnowpkX_NrpNODR6kuD1ERkO5YqndIpWv4egAQFBCvEQgTE/s1600/20111028125108.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="172" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg16BHeHk6qh2rpYYgivbI3aYS6uORmcPVIGfeHV8rSzYPwJHsVWmWgVn1NV34oAoylXmx7M0MbzRoj4HPADjq9ZcSPlhdNGnowpkX_NrpNODR6kuD1ERkO5YqndIpWv4egAQFBCvEQgTE/s320/20111028125108.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-family: verdana; font-size: 12px;"&gt;Em votação realizada pela Agência Nacional de Telecomunicações (ANATEL), ontem, 27 de outubro, foi aprovada nova medida que estipula metas de qualidade para as concessionárias de conexão de internet banda larga no Brasil. Segundo a proposta, as empresas de telecomunicação que ofereçam serviços de internet agora deverão entregar duas metas - uma sobre velocidade mínima e outra sobre velocidade média. A resolução leva em consideração os momentos de alto tráfego.&lt;br /&gt;
&lt;br /&gt;
O novo regulamento passará a valer a partir de novembro de 2012. Nas linhas abaixo, você confere o que vai mudar na sua velocidade de internet no ano que vem:&lt;strong&gt;&lt;br /&gt;
&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;
&lt;ul style="list-style-type: disc;"&gt;&lt;li&gt;&lt;strong&gt;Novembro de 2012 -&amp;nbsp;&lt;/strong&gt;20% mínimo e média de 60% da velocidade contratada&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Até novembro de 2013&lt;/strong&gt;&amp;nbsp;- 30% mínimo e média de 70% da velocidade contratada&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Até novembro de 2014&lt;/strong&gt;&amp;nbsp;- 40% mínimo e média de 80% da velocidade contratada&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
As novas regras valem para as concessionárias que possuem mais de 50 mil assinantes, estando isentas do regulamento aquelas com numero inferior de clientes. Atualmente, no Brasil, as concessionárias com mais de 50 mil assinantes são Oi/Brasil Telecom, Telefônica, NET, Ajato, Velox, GVT, para telefonia fixa; e Oi, Claro, Vivo e TIM, para telefonia móvel 3G.&lt;br /&gt;
&lt;br /&gt;
A resolução também obrigará as concessionárias a manterem o sinal de conexão estável por 99% do tempo mensal (trocando em miúdos, o usuário só poderá ficar sem internet por até sete horas por mês, independente do motivo), além de as empresas fornecedoras de internet terem que contratar uma entidade de fiscalização - entidade esta que vai operar de forma independente e responderá diretamente à ANATEL.&lt;br /&gt;
&lt;br /&gt;
O não cumprimento do novo regulamento acarretará multa de até R$ 25 milhões para a entidade infratora.&lt;br /&gt;
&lt;br /&gt;
Atualmente, não há regra estabelecida sobre a oferta de qualidade de conexão de internet no país. O que o consumidor tem hoje é a sugestão contratual, vinda da própria concessionária, de que a empresa tem a obrigação de entregar "apenas 10% do que se foi contratado".&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: verdana; font-size: 12px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: verdana; font-size: 12px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: verdana;"&gt;&lt;span class="Apple-style-span" style="font-size: 12px;"&gt;fonte:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;a href="http://olhardigital.uol.com.br/"&gt;http://olhardigital.uol.com.br&lt;/a&gt;</description><link>http://computacaotop10.blogspot.com/2011/10/ja-estava-na-hora-de-termos-um.html</link><author>noreply@blogger.com (Amauri)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg16BHeHk6qh2rpYYgivbI3aYS6uORmcPVIGfeHV8rSzYPwJHsVWmWgVn1NV34oAoylXmx7M0MbzRoj4HPADjq9ZcSPlhdNGnowpkX_NrpNODR6kuD1ERkO5YqndIpWv4egAQFBCvEQgTE/s72-c/20111028125108.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-7982927006156143267</guid><pubDate>Wed, 26 Oct 2011 16:53:00 +0000</pubDate><atom:updated>2011-10-26T14:03:14.677-03:00</atom:updated><title>Symbian Belle chega no dia 26 de outubro</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div style="margin-left: 1em; margin-right: 1em;"&gt;&lt;/div&gt;&lt;div style="margin-left: 1em; margin-right: 1em;"&gt;&lt;/div&gt;&lt;div style="margin-left: 1em; margin-right: 1em;"&gt;&lt;/div&gt;&lt;div style="margin-left: 1em; margin-right: 1em;"&gt;&lt;/div&gt;&lt;div style="margin-left: 1em; margin-right: 1em;"&gt;&lt;/div&gt;&lt;div style="margin-left: 1em; margin-right: 1em;"&gt;&lt;span style="font-size: x-large;"&gt;&lt;b&gt;Symbian Belle chega no dia 26 de outubro&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-left: 1em; margin-right: 1em;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img class="entry-imgabre" height="235" id="img-noticia" src="http://info.abril.com.br/aberto/infonews/fotos/Symbian-Belle-20111009142858.jpg" width="320" /&gt;&amp;nbsp;&lt;/div&gt;&lt;div style="margin-left: 1em; margin-right: 1em;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;div class="noticia-imagem" id="noticia-imagem"&gt;&lt;/div&gt;São Paulo – A Nokia vai liberar no final deste mês,  precisamente no dia 26 de outubro, mais uma versão do Symbian. A data  não é confirmada pela empresa.&lt;br /&gt;
Chamado de Belle, o sistema operacional vai substituir o Anna.  O software será liberado via Ovi Suíte e será compatível com os modelos  N8, C7, E7, C6-01, E6 e X7. O modelo Nokia 500 pode ganhar a  atualização, mas a informação ainda não foi confirmada pela fabricante.&lt;br /&gt;
&lt;div class="barra-noticias"&gt;&lt;div id="entry-related"&gt;&lt;a href="http://ads.abril.com.br/RealMedia/ads/click_lx.ads/infoexame/plantao/1548751723/Bottom/AbrilDefault/default/empty.gif/794955454e6b34495a5430414270356e" target="_top"&gt;&lt;img alt="" border="0" height="1" src="http://ads.abril.com.br/RealMedia/ads/adstream_lx.ads/infoexame/plantao/1548751723/Bottom/AbrilDefault/default/empty.gif/794955454e6b34495a5430414270356e" style="border: 0px;" width="1" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;O Belle, pelo que sugere algumas imagens do sistema, trará um  pouco dos recursos do Android e do iPhone para os aparelhos Nokia com  tela sensível ao toque. Um deles, por exemplo, é a movimentação de  widgets pela tela do smartphone. Outro é a barra de notificações na  parte superior do telefone.&lt;br /&gt;
O Belle, uma atualização do Symbian 3, não deverá ser a última  do sistema. Segundo a Nokia, os celulares que rodam Symbian terão  atualizações até 2016.</description><link>http://computacaotop10.blogspot.com/2011/10/blog-post.html</link><author>noreply@blogger.com (Computação Top10)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-2698060326313822774</guid><pubDate>Fri, 21 Oct 2011 19:00:00 +0000</pubDate><atom:updated>2011-10-21T16:05:22.622-03:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Pascal</category><title>Programa capaz de preencher uma fila sequencial e implementar uma rotina busca que retorna o número de vezes que o elemento x aparece dentro da fila (pascalzim 5.1.2)</title><description>Program Pzim ;&lt;br /&gt;
&amp;nbsp;const max = 100;&lt;br /&gt;
&amp;nbsp;type Fila = record&lt;br /&gt;
&amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;dados : array[1..max]of integer;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;inicio, fim : integer;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; var&lt;br /&gt;
&amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;f1 : Fila;&lt;br /&gt;
&amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;num, bus, valor : integer;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &lt;br /&gt;
&amp;nbsp;procedure criar(var F:Fila);&lt;br /&gt;
&amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;F.inicio := 1;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;F.fim := 1;&lt;br /&gt;
&amp;nbsp;end;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;function filaVazia(F:Fila):boolean;&lt;br /&gt;
&amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;if F.inicio = F.fim then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;filaVazia := true&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;filaVazia := false;&lt;br /&gt;
&amp;nbsp;end;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;function filaCheia(F:Fila):boolean;&lt;br /&gt;
&amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;if F.fim &amp;gt; max then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;filaCheia := true&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;filaCheia := false;&lt;br /&gt;
&amp;nbsp;end;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;procedure enqueue(var F:Fila;s:integer);&lt;br /&gt;
&amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;if filaCheia(F)then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;writeln('A fila tá cheia!')&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;F.dados[F.fim] := s;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;F.fim := F.fim + 1;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;writeln('Inserção efetuada!');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&amp;nbsp;end;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;function dequeue(var F:Fila):integer;&lt;br /&gt;
&amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;if filaVazia(F)then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;writeln('A fila tá vazia!')&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;dequeue := F.dados[F.inicio];&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;F.inicio := F.inicio + 1;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&amp;nbsp;end;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;function busca(F:Fila; x: integer):integer;&lt;br /&gt;
&amp;nbsp;var&lt;br /&gt;
&amp;nbsp; &amp;nbsp; res: integer;&lt;br /&gt;
&amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp;res := 0;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; while not filaVazia(f) do&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (f.dados[f.inicio] = x) then&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp; res := res +1;&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp; f.inicio := f.inicio +1;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; busca := res;&lt;br /&gt;
&amp;nbsp;end;&lt;br /&gt;
&amp;nbsp;Begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;textcolor(white);&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;criar(f1);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;writeln('A fila está vazia? ', filaVazia(f1));&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;writeln('A fila está cheia? ', filaCheia(f1));&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;repeat&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; writeln ('digite o elemento da lista ou "0" para sair');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; readln (num);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; enqueue (f1, num);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;until (num = 0);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;writeln (' digite o valor que deseja buscar');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;readln (bus);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;valor := busca(f1, bus);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;writeln (' o valor aparece ', valor, ' na lista');&lt;br /&gt;
&amp;nbsp;End.</description><link>http://computacaotop10.blogspot.com/2011/10/programa-capaz-de-preencher-uma-fila.html</link><author>noreply@blogger.com (Amauri)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-351919995445566157</guid><pubDate>Fri, 21 Oct 2011 18:55:00 +0000</pubDate><atom:updated>2011-10-21T16:04:51.667-03:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Pascal</category><title>Lista encadeada com uma função de busca que retorna true se o elemento procurado estiver na lista e false caso contrário (pascalzim 5.1.2)</title><description>program ListaEncadeada;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp;type&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ListEnc = ^No;&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp; &lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;   &lt;/span&gt;No = record&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; obj: String;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; prox: ListEnc;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;var&lt;br /&gt;
&amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;L :ListEnc;&lt;br /&gt;
&amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;bus : string;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//CRIA LISTA VAZIA&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;procedure criar(var L:ListEnc);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;L := nil;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp;//INFORMA SE A LISTA ESTÁ VAZIA OU NÃO&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;function vazia(L: ListEnc):boolean;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if L = nil then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; vazia := true&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; vazia := false;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//INSERE UM ELEMENTO NA LISTA&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;procedure inserir(var L: ListEnc; s: string);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; N, P: ListEnc;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; new(N);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; N^.obj := s;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if vazia(L)then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; N^.prox := L;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; L := N;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;end&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;br /&gt;
&amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;   &lt;/span&gt;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;   &lt;/span&gt;P := L;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;   &lt;/span&gt;while (P^.prox &amp;lt;&amp;gt; nil)do&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; P := P^.prox;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;N^.prox := P^.prox;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;P^.prox := N;&lt;br /&gt;
&amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;   &lt;/span&gt;end;&lt;br /&gt;
&amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;end;&lt;br /&gt;
&amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;//REMOVE UM ELEMENTO DA LISTA&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function remover(var L: ListEnc; s: string):boolean;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; P, Q: ListEnc;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if vazia(L)then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; remover := false&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;if (L^.obj = s)then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;P := L;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;L := L^.prox;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;dispose(P);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;remover := true;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;end&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;P := L;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;while ((P^.prox &amp;lt;&amp;gt; nil)and (P^.prox^.obj &amp;lt;&amp;gt; s)) do&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;P := P^.prox;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;if (P^.prox &amp;lt;&amp;gt; nil) and (P^.prox^.obj = s) then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Q := P^.prox;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;P^.prox := Q^.prox;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;dispose(Q);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;remover := true;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;end&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;remover := false;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;end;&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;   &lt;/span&gt;end; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;end;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// IMPRIME A LISTA&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;procedure imprimir(L: ListEnc);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; P: ListEnc;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if vazia(L)then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;writeln('LISTA VAZIA!!!')&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; P := L;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; while (P &amp;lt;&amp;gt; nil) do&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; begin&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;    &lt;/span&gt; write(P^.obj,' | ');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;P := P^.prox;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp;function busca(L: ListEnc; x: string):boolean;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; P: ListEnc;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; P := L;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; busca := false;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; while (P &amp;lt;&amp;gt; nil) do&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; begin&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;    &lt;/span&gt; if P^.obj = x then&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;    &lt;/span&gt; &amp;nbsp; &amp;nbsp;busca := true;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;P := P^.prox;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; end; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;//INICIO DO PROGRAMA PRINCIPAL&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;Begin&lt;br /&gt;
&amp;nbsp; &lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;criar(L);&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;writeln(vazia(L));&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;inserir(L, 'MACACO');&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;inserir(L, 'CACHORRO');&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;inserir(L, 'GATO');&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;inserir(L, 'LEÃO');&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;inserir(L, 'RATO');&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;inserir(L, 'CAMELO');&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;inserir(L, 'CORUJA');&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;imprimir(L);&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;writeln; &lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;writeln(remover(L,'RATO'));&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;writeln('APÓS A REMOÇÃO...');&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;writeln;&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;imprimir(L);&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;writeln ('busca');&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;readln (bus);&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;writeln (busca(L, bus));&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;readln;&lt;br /&gt;
&amp;nbsp;End.</description><link>http://computacaotop10.blogspot.com/2011/10/lista-encadeada-com-uma-funcao-de-busca.html</link><author>noreply@blogger.com (Amauri)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-3669895323374073044</guid><pubDate>Fri, 21 Oct 2011 18:50:00 +0000</pubDate><atom:updated>2011-10-21T16:03:49.268-03:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Pascal</category><title>Algoritmo para repassar os elementos de uma fila, sendo que no final do processamento, os elementos da fila devem estar disposto em uma lista encadeada (pascalzim 5.1.2)</title><description>Program Pzim ;&lt;br /&gt;
&amp;nbsp;const max = 7;&lt;br /&gt;
&amp;nbsp;type Fila = record&lt;br /&gt;
&amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;dados : array[1..max]of string;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;inicio, fim : integer;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ListEnc = ^No;&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp; &lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;   &lt;/span&gt;No = record&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; obj: String;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; prox: ListEnc;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
var&lt;br /&gt;
&amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;L :ListEnc;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;f1 : Fila;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;v: string;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &lt;br /&gt;
&amp;nbsp;procedure criar(var F:Fila);&lt;br /&gt;
&amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;F.inicio := 1;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;F.fim := 1;&lt;br /&gt;
&amp;nbsp;end;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;function filaVazia(F:Fila):boolean;&lt;br /&gt;
&amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;if F.inicio = F.fim then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;filaVazia := true&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;filaVazia := false;&lt;br /&gt;
&amp;nbsp;end;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;function filaCheia(F:Fila):boolean;&lt;br /&gt;
&amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;if F.fim &amp;gt; max then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;filaCheia := true&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;filaCheia := false;&lt;br /&gt;
&amp;nbsp;end;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;procedure enqueue(var F:Fila;s:string);&lt;br /&gt;
&amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;if filaCheia(F)then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;writeln('A fila tá cheia!')&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;F.dados[F.fim] := s;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;F.fim := F.fim + 1;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;writeln('Inserção efetuada!')&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&amp;nbsp;end;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;function dequeue(var F:Fila):string;&lt;br /&gt;
&amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;if filaVazia(F)then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;writeln('A fila tá vazia!')&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;dequeue := F.dados[F.inicio];&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;F.inicio := F.inicio + 1;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&amp;nbsp;end;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;procedure mostrarFila(F:Fila);&lt;br /&gt;
&amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;if filaVazia(F)then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;writeln('A fila tá vazia!')&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;while not filaVazia(F)do&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;   &lt;/span&gt;write(dequeue(F),'|');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;writeln;&lt;br /&gt;
&amp;nbsp;end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;procedure Lcriar(var L:ListEnc);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;L := nil;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp;//INFORMA SE A LISTA ESTÁ VAZIA OU NÃO&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;function vazia(L: ListEnc):boolean;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if L = nil then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; vazia := true&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; vazia := false;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//INSERE UM ELEMENTO NA LISTA&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;procedure inserir(var L: ListEnc; s: string);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; N, P: ListEnc;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; new(N);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; N^.obj := s;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if vazia(L)then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; N^.prox := L;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; L := N;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;end&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;br /&gt;
&amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;   &lt;/span&gt;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;   &lt;/span&gt;P := L;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;   &lt;/span&gt;while (P^.prox &amp;lt;&amp;gt; nil)do&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; P := P^.prox;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;N^.prox := P^.prox;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;P^.prox := N;&lt;br /&gt;
&amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;   &lt;/span&gt;end;&lt;br /&gt;
&amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;end;&lt;br /&gt;
&amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;//REMOVE UM ELEMENTO DA LISTA&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function remover(var L: ListEnc; s: string):boolean;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; P, Q: ListEnc;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if vazia(L)then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; remover := false&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;if (L^.obj = s)then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;P := L;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;L := L^.prox;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;dispose(P);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;remover := true;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;end&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;P := L;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;while ((P^.prox &amp;lt;&amp;gt; nil)and (P^.prox^.obj &amp;lt;&amp;gt; s)) do&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;P := P^.prox;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;if (P^.prox &amp;lt;&amp;gt; nil) and (P^.prox^.obj = s) then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Q := P^.prox;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;P^.prox := Q^.prox;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;dispose(Q);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;remover := true;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;end&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;remover := false;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;end;&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;   &lt;/span&gt;end; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;end;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// IMPRIME A LISTA&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;procedure imprimir(L: ListEnc);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; P: ListEnc;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if vazia(L)then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;writeln('LISTA VAZIA!!!')&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; P := L;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; while (P &amp;lt;&amp;gt; nil) do&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; begin&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;    &lt;/span&gt; write(P^.obj,' | ');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;P := P^.prox;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;end; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;Begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;textcolor(white);&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;criar(f1);&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;Lcriar(L);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;writeln('A fila está vazia? ', filaVazia(f1));&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;writeln('A fila está cheia? ', filaCheia(f1));&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;enqueue(f1,'Macaco');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;enqueue(f1,'Cachorro');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;enqueue(f1,'Gato');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;enqueue(f1,'Coruja');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;enqueue(f1,'Cobra');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;enqueue(f1,'Porco');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; while not filaVazia(f1) do&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;begin &lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;v := dequeue(f1);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;inserir(L, v);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;writeln ('imprimindo a lista');&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;imprimir(L);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;readln;&lt;br /&gt;
&amp;nbsp;End.</description><link>http://computacaotop10.blogspot.com/2011/10/escreva-um-algoritmo-para-repassar-os.html</link><author>noreply@blogger.com (Amauri)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-4100309172959223109</guid><pubDate>Fri, 21 Oct 2011 02:36:00 +0000</pubDate><atom:updated>2011-10-20T23:37:30.500-03:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Pascal</category><title>Exercício de pilha e fila em Pascal (Dev-Pascal)</title><description>&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 18.0pt; mso-list: l0 level1 lfo1; mso-margin-top-alt: auto; tab-stops: list 18.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial;"&gt;&lt;span style="font: normal normal normal 7pt/normal 'Times New Roman';"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;Program filapilha ;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 18.0pt; mso-list: l0 level1 lfo1; mso-margin-top-alt: auto; tab-stops: list 18.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class="Apple-style-span" style="color: lime;"&gt;// Autor: Cícero Amauri&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 18.0pt; mso-list: l0 level1 lfo1; mso-margin-top-alt: auto; tab-stops: list 18.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial;"&gt;&lt;span style="font: normal normal normal 7pt/normal 'Times New Roman';"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-style-span" style="font-size: small;"&gt; &amp;nbsp; &amp;nbsp; &lt;span class="Apple-style-span" style="color: red;"&gt;&amp;nbsp;{&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial;"&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;Escreva um algoritmo que converta uma pilha implementada em: &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;&lt;span class="Apple-style-span" style="background-color: white;"&gt;&lt;span style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;·&lt;span style="font: normal normal normal 7pt/normal 'Times New Roman';"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; font-size: small;"&gt; Fila&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial;"&gt;&lt;span class="Apple-style-span" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;, Considerar a lista com no máximo 100 elementos}&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="background-color: yellow;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial;"&gt;&lt;span class="Apple-style-span" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;const max = 100;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;type&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; pilha = record&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; obj: array [1..max] of integer;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cont: integer;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; end;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fila = record&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dados : array [1..max] of integer;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; inicio, fim: integer;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; end;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;function vazia (x: pilha):boolean;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;begin&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if x.cont = 0 then&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; vazia := true&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; vazia := false;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;end;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;procedure criar (var x: pilha);&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; begin&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; x.cont := 0;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; end;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;procedure push(var x: pilha; y: integer);&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; x.cont := x.cont + 1;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; x.obj[x.cont] := y ;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;function pop (var x: pilha): integer;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;begin&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;pop := x.obj[x.cont];&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;x.cont := x.cont - 1;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;end;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;function fcheia (f: fila): boolean;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;begin&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if f.fim &amp;gt; max then&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; fcheia := true&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;fcheia := false;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;end;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;procedure fcriar (var f: fila);&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;begin&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;f.inicio := 1;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;f.fim := 1;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;end;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;function fvazia (f: fila): boolean;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;begin&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if f.inicio = f.fim then&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;fvazia := true&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fvazia := false;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;end; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;procedure enqueue (var f: fila; w: integer);&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;begin&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if fcheia (f) then&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; writeln ('fila cheia')&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; begin&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;f.dados[f.fim] := w;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;f.fim := f.fim + 1;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; end;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;end;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;procedure dequeue (var f: fila);&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;begin&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if fvazia(f) then&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;writeln ('fila vazia')&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; begin&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; writeln (f.dados[f.inicio]);&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; f.inicio := f.inicio + 1;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; end;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp;end;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;var&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; p: pilha;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; num, res: integer;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; f: fila;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;Begin&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; criar(p);&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; repeat&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;write ('digite um número ou "0" para sair: ');&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;readln (num);&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if num = 0 then&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; writeln ('saindo do programa')&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; else&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;push (p, num);&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; until (num = 0);&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; fcriar (f);&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; while not vazia(p) do&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; res:= pop(p);&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;enqueue (f, res);&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;writeln ('imprimindo a pilha');&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;while not fvazia(f) do&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dequeue (f);&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;readln;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-bottom: 6.0pt; margin-left: 54.0pt; mso-list: l0 level2 lfo1; mso-margin-top-alt: auto; tab-stops: list 54.0pt; text-align: justify; text-indent: -18.0pt;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;End.&lt;/span&gt;&lt;/div&gt;</description><link>http://computacaotop10.blogspot.com/2011/10/exercicio-de-pilha-e-fila-em-pascal-dev.html</link><author>noreply@blogger.com (Amauri)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-6389215356796975743</guid><pubDate>Thu, 06 Oct 2011 23:03:00 +0000</pubDate><atom:updated>2011-10-06T20:12:07.446-03:00</atom:updated><title>Morre Esteve Jobs</title><description>&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEit_y8PctSZT2uLHWWU6V20fiUvKG5u-LgdrlJ4Uo450NeXLLjtDI2gs7pffx_CqQV3guKxtrT_p5vSHLG2Bo6-_wyO4Apt1hNngtEf-bjvmhK8OotQN-1LP8KfzyVVivuKI6dA2rxzlLc/s1600/steve-jobs+%25282%2529.jpg"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5660518054670483362" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEit_y8PctSZT2uLHWWU6V20fiUvKG5u-LgdrlJ4Uo450NeXLLjtDI2gs7pffx_CqQV3guKxtrT_p5vSHLG2Bo6-_wyO4Apt1hNngtEf-bjvmhK8OotQN-1LP8KfzyVVivuKI6dA2rxzlLc/s1600/steve-jobs+%25282%2529.jpg" style="display: block; margin-bottom: 10px; margin-left: auto; margin-right: auto; margin-top: 0px; text-align: center;" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;h1 style="margin-bottom: .0001pt; margin: 0cm; text-align: justify;"&gt;&lt;span class="Apple-style-span"&gt;&lt;h1 style="margin-bottom: .0001pt; margin: 0cm; text-align: justify;"&gt;&lt;span style="color: black; font-family: Arial; font-size: 12pt;"&gt;Morre Steve Jobs, cofundador da Apple&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h1&gt;&lt;/span&gt;&lt;/h1&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="subtitle"&gt;&lt;span style="color: black; font-family: Arial;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="subtitle"&gt;&lt;span style="color: black; font-family: Arial;"&gt;De acordo com nota publicada no site da Apple, o ex-CEO da empresa não sobreviveu ao câncer, doença contra a qual lutava desde 2004, e faleceu nesta quarta-feira, aos 56 anos.&lt;/span&gt;&lt;/span&gt;&lt;span style="color: black; font-family: Arial;"&gt;&lt;br /&gt;
&lt;br /&gt;
Segundo&lt;span class="apple-converted-space"&gt; &lt;/span&gt;&lt;a href="http://www.apple.com/stevejobs/" target="_blank"&gt;nota publicada no site da Apple&lt;/a&gt;, Steve Jobs, cofundador e ex-CEO da empresa, faleceu hoje, quarta-feira, aos 56 anos. Não foram divulgadas as causas exatas de sua morte, porém, é provável que ele não tenha resistido ao câncer, doença contra a qual lutava desde 2004. Segue o texto em tradução livre:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;em&gt;&lt;span style="color: black; font-family: Arial;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/em&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;em&gt;&lt;span style="color: black; font-family: Arial;"&gt;"A Apple perdeu um gênio criativo e visionário, e o mundo perdeu um maravilhoso ser humano. Aqueles de nós que tiveram a sorte de conhecer Steve e trabalhar com ele perderam um grande amigo e um mentor que os inspirava. Steve deixa para trás uma companhia que só ele poderia ter criado. Seu espírito será sempre a base da Apple.&lt;/span&gt;&lt;/em&gt;&lt;span style="color: black; font-family: Arial;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;h2 style="margin-bottom: .0001pt; margin: 0cm; text-align: justify;"&gt;&lt;span style="color: black; font-size: 12pt;"&gt;&lt;br /&gt;
Mensagem da Diretoria da Apple&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;&lt;div style="text-align: justify;"&gt;&lt;em&gt;&lt;span style="color: black; font-family: Arial;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/em&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;em&gt;&lt;span style="color: black; font-family: Arial;"&gt;"É com pesar que anunciamos a morte de Steve Jobs hoje.&lt;/span&gt;&lt;/em&gt;&lt;span style="color: black; font-family: Arial;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;em&gt;&lt;span style="color: black; font-family: Arial;"&gt;O brilho de Steve, sua paixão e energia eram a fonte de diversas inovações que enriqueceram e melhoraram nossas vidas. O mundo está muito melhor por conta do Steve.&lt;/span&gt;&lt;/em&gt;&lt;span style="color: black; font-family: Arial;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;em&gt;&lt;span style="color: black; font-family: Arial;"&gt;Seu maior amor era por sua esposa, Laurene, e sua família. Nossos corações estão com eles e com todos os que foram agraciados com seus dons extraordinários." &lt;/span&gt;&lt;/em&gt;&lt;span style="color: black; font-family: Arial;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;h2 style="margin-bottom: .0001pt; margin: 0cm; text-align: justify;"&gt;&lt;span style="color: black; font-size: 12pt;"&gt;&lt;br /&gt;
&lt;br /&gt;
Jobs, um visionário&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: black; font-family: Arial;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: black; font-family: Arial;"&gt;Steve Jobs foi o responsável não só pela criação da empresa de tecnologia mais poderosa da atualidade, mas também por grandes produtos como o iPhone e o iPad. Jobs é tido como um dos grandes gurus da tecnologia e é uma fonte de inspiração para milhares de pessoas em todo o mundo.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEguNClHgJSO6szxO6AuxBdZ3Tmx1oPq2P8X7UT8hGYKzeZXsyJ2Vbs1MqDNULAt0cOHa0HWVkjgaVVOFhnZt1hJ0X76vArPdlfB1KJ-YnbpJ9GoLKE6EZwTvVtK7jZk1uR9KSLkntJQbck/s1600/steve-jobs-serious.jpeg"&gt;&lt;img alt="" border="0" height="180" id="BLOGGER_PHOTO_ID_5660517946655302498" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEguNClHgJSO6szxO6AuxBdZ3Tmx1oPq2P8X7UT8hGYKzeZXsyJ2Vbs1MqDNULAt0cOHa0HWVkjgaVVOFhnZt1hJ0X76vArPdlfB1KJ-YnbpJ9GoLKE6EZwTvVtK7jZk1uR9KSLkntJQbck/s320/steve-jobs-serious.jpeg" style="display: block; margin-bottom: 10px; margin-left: auto; margin-right: auto; margin-top: 0px; text-align: center;" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Arial;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class="Apple-style-span" style="font-size: x-small;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: xx-small;"&gt;(imagem ilustrativa)&lt;/span&gt; &lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Arial;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Arial;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span class="Apple-style-span" style="font-size: xx-small;"&gt;fonte:&lt;a href="http://www.tecmundo.com.br/steve-jobs/14040-morre-steve-jobs-cofundador-da-apple.htm"&gt;http://www.tecmundo.com.br/steve-jobs/14040-morre-steve-jobs-cofundador-da-apple.htm&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;</description><link>http://computacaotop10.blogspot.com/2011/10/morre-esteve-jobs.html</link><author>noreply@blogger.com (Bruno Teles)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEit_y8PctSZT2uLHWWU6V20fiUvKG5u-LgdrlJ4Uo450NeXLLjtDI2gs7pffx_CqQV3guKxtrT_p5vSHLG2Bo6-_wyO4Apt1hNngtEf-bjvmhK8OotQN-1LP8KfzyVVivuKI6dA2rxzlLc/s72-c/steve-jobs+%25282%2529.jpg" width="72"/><thr:total>2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-6158390682068019216</guid><pubDate>Mon, 03 Oct 2011 10:58:00 +0000</pubDate><atom:updated>2011-10-03T08:12:12.759-03:00</atom:updated><title>Antivírus da Microsoft aponta vírus no Chrome</title><description>&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="background-color: white; line-height: 22px;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;Atualização liberada na madrugada nesta sexta-feira (30/9) provoca falso positivo; se escolher "Remover", usuário perderá o navegador da Google.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; margin-left: 1em; margin-right: 1em;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="background-color: white; line-height: 22px;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="background-color: white; line-height: 22px;"&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="color: black; line-height: normal; margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2TPoRJofDBP3THJjRlqxiLGKb_tPf-D3m_ZFkMhlKkmsedKzoRWFLXklTPSdMHiioyIHO7PmS64Rr0x-kKEOLFrDwFrBjhxWKQnyk1DgekV7eKtoAEcMYWomJUgwKs38SmcNpb9daz5I/s1600/images.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2TPoRJofDBP3THJjRlqxiLGKb_tPf-D3m_ZFkMhlKkmsedKzoRWFLXklTPSdMHiioyIHO7PmS64Rr0x-kKEOLFrDwFrBjhxWKQnyk1DgekV7eKtoAEcMYWomJUgwKs38SmcNpb9daz5I/s1600/images.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-family: 'Times New Roman';"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;Uma atualização aparentemente liberada nesta sexta-feira (30/9) pela Microsoft para seu antivírus Security Essentials tem feito com que o sistema acuse a existência de vírus no navegador Chrome, da Google.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black; line-height: normal; margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black; line-height: normal; margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;Segundo o&amp;nbsp;&lt;a class="external-link" href="http://www.businessinsider.com/windows--google-chrome-virus-2011-9" style="background-color: transparent; color: #000191; cursor: pointer; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;Business Insider&lt;/a&gt;, se o usuário escolher a opção "Remover", o computador será reiniciado e o Google Chrome não funcionará mais.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black; line-height: normal; margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;&lt;div style="color: black; line-height: normal; margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;O problema de falso positivo foi reconhecido pela Microsoft nesta sexta-feira. Em&amp;nbsp;&lt;a class="external-link" href="http://www.microsoft.com/security/portal/Threat/Encyclopedia/Entry.aspx?name=PWS%3aWin32%2fZbot" style="background-color: transparent; color: #000191; cursor: pointer; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;nota publicada&lt;/a&gt;&amp;nbsp;em seu portal de segurança, a empresa afirma que "em 30 de setembro de 2011, foi identificada uma detecção incorreta para o PWS:Win32/Zbot".&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black; line-height: normal; margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black; line-height: normal; margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;"Em 30 de setembro de 2011, a Microsoft liberou uma atualização que corrige a questão. As versões com assinatura 1.113.672.0 e mais atuais incluem a atualização", completa a nota, sem mencionar o Chrome.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black; line-height: normal; margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black; line-height: normal; margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;Segundo a Microsoft, o PWS:Win32/Zbot é um trojan que rouba senhas e monitora a visita em certos sites da web, além de permitir o acesso ao sistema por brechas conhecidas como porta dos fundos (backdoors).&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-size: xx-small;"&gt;Fonte: http://pcworld.uol.com.br/noticias/2011/09/30/antivirus-da-microsoft-aponta-virus-no-chrome/&lt;/span&gt;</description><link>http://computacaotop10.blogspot.com/2011/10/antivirus-da-microsoft-aponta-virus-no.html</link><author>noreply@blogger.com (Computação Top10)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2TPoRJofDBP3THJjRlqxiLGKb_tPf-D3m_ZFkMhlKkmsedKzoRWFLXklTPSdMHiioyIHO7PmS64Rr0x-kKEOLFrDwFrBjhxWKQnyk1DgekV7eKtoAEcMYWomJUgwKs38SmcNpb9daz5I/s72-c/images.jpg" width="72"/><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-7316375443115694783</guid><pubDate>Wed, 28 Sep 2011 19:11:00 +0000</pubDate><atom:updated>2011-09-28T16:11:06.014-03:00</atom:updated><title>Redes Wi-Fi podem ser utilizadas para monitoramento respiratório</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;span style="margin-left: 1em; margin-right: 1em;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; font-size: 16px;"&gt;&lt;b&gt;Estudos da Universidade de Utah mostram que respirações podem interferir em redes sem fio.&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;img height="265" src="http://ibxk.com.br/materias/13772/766471.jpg" width="400" /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; font-size: 16px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; font-size: 16px;"&gt;Durante testes de novos aparelhos em um hospital, o engenheiro da computação e pesquisador Neal Patwari percebeu que algumas pequenas oscilações no&amp;nbsp;&lt;a href="http://www.tecmundo.com.br/wi-fi" style="text-decoration: none;" target="_blank"&gt;sinal de transmissão wireless&lt;/a&gt;. Com um pouco mais de análise, percebeu que o padrão nas interferências era similar ao da respiração das pessoas que estavam na sala. Para ter mais certeza, decidiu fazer testes mais complexos.&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; font-size: 16px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;div style="font-size: 16px; text-align: justify;"&gt;Para isso, utilizou uma cama de hospital e instalou 20 transmissores sem fio no quarto. Configurou a rede local para enviar sinais em frequências de 2,4 GHz, mas utilizou a um milésimo da potência de uma placa de rede wireless. Ao final das medições, foi constatado que o pesquisador havia respirado normalmente por quatro vezes, com uma margem de erro muito baixa.&lt;/div&gt;&lt;div style="font-size: 16px; text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="font-size: 16px; text-align: justify;"&gt;Com os resultados, Patwari chegou à conclusão de que quando alguém inala o ar, o sinal Wi-Fi precisa navegar em uma distância um pouco maior, mas isso é o suficiente para que sejam percebidas pequenas quedas na potência do sinal. Caso novas pesquisas provem a eficiência do método, é possível que em breve hospitais passem a utilizar esse tipo de monitoramento para os pacientes.&lt;/div&gt;&lt;div style="font-size: 16px; text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="font-size: 16px; text-align: justify;"&gt;A principal justificativa para a implementação do sistema, segundo o&amp;nbsp;&lt;a href="http://www.newscientist.com/article/dn20971-wireless-network-can-watch-your-breathing.html" style="text-decoration: none;" target="_blank"&gt;New Scientist&lt;/a&gt;, seria a diminuição do desconforto que pacientes sentem ao ficarem com tubos e aparelhos conectados. Com redes sem fio, pessoas hospitalizadas por doenças menos graves poderiam ser facilmente monitoradas à distância pelos médicos e enfermeiros.&lt;/div&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-size: xx-small;"&gt;Fonte:&amp;nbsp;&lt;a href="http://www.tecmundo.com.br/medicina/13772-redes-wi-fi-podem-ser-utilizadas-para-monitoramento-respiratorio.htm#ixzz1ZHA8Hp7V" style="color: #003399; text-decoration: none;"&gt;http://www.tecmundo.com.br/medicina/13772-redes-wi-fi-podem-ser-utilizadas-para-monitoramento-respiratorio.htm#ixzz1ZHA8Hp7V&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;</description><link>http://computacaotop10.blogspot.com/2011/09/redes-wi-fi-podem-ser-utilizadas-para.html</link><author>noreply@blogger.com (Computação Top10)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-4874959439516826123</guid><pubDate>Thu, 22 Sep 2011 18:56:00 +0000</pubDate><atom:updated>2011-09-22T15:57:11.817-03:00</atom:updated><title>Mudanças no facebook</title><description>&lt;span class="Apple-style-span" style="color: #333333; font-family: arial; font-size: 15px; line-height: 22px;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;span class="Apple-style-span" style="color: #333333; font-size: 15px; line-height: 22px;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFfHfFaf9hQO29jtZxlrDrN3kVRI9DPZ38nPw2eJLhyphenhyphenkQbedB-SDEOHcmvF_Y3czjrUHCMqHjLJTzVQRImgYYatUgc7dpn0ss6yiANa_LQhyphenhyphen4jTTMuUjZRlTEMDF3gklJi_0_LuN7dfNs/s1600/como-colocar-musica-no-perfil-do-facebook.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="150" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFfHfFaf9hQO29jtZxlrDrN3kVRI9DPZ38nPw2eJLhyphenhyphenkQbedB-SDEOHcmvF_Y3czjrUHCMqHjLJTzVQRImgYYatUgc7dpn0ss6yiANa_LQhyphenhyphen4jTTMuUjZRlTEMDF3gklJi_0_LuN7dfNs/s400/como-colocar-musica-no-perfil-do-facebook.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;São Paulo - O CEO do Facebook, Mark Zuckerberg, anunciou, hoje, durante a f8, conferência da empresa para desenvolvedores que acontece em São Francisco, na Califórnia, uma série de inovações para sua rede social.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;A principal delas é uma nova versão para o perfil dos usuários, chamado timeline.&amp;nbsp; Ele irá agregar todas as publicações compartilhadas pelo usuário ao longo dos anos.&lt;/div&gt;&lt;br /&gt;
&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;span class="Apple-style-span" style="color: #333333; font-size: 15px; line-height: 22px;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;“Toda a sua história, todos os seus aplicativos e um novo modo de você expressar quem você é”, definiu o CEO sobre o conteúdo que irá formar a timeline do usuário.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Veja como será o novo perfil do&amp;nbsp;&lt;strong style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; font-weight: bold; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;a href="http://www.facebook.com/about/timeline" style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; color: #006699; font-family: arial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;Facebook&lt;/a&gt;.&lt;/strong&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Em suma, o novo modelo funcionará com um diário digital 2.0 do usuário, que terá seu conteúdo dividido por anos. O layout da timeline e seu modo de navegação é similar ao de aplicativos para tablets, como o do Flipboard.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;“A primeira versão do perfil do usuário que apresentamos em 2004 significou os primeiros cinco minutos de uma conversa; o news feed, introduzido em 2008, significou os próximos 20. A timeline vai representar todo o resto”, definiu Zuckerberg.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; font-weight: bold; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Novos apps vão além dos games sociais&lt;/strong&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Para gerar conteúdo para a timeline do usuário, o Facebook irá disponibilizar uma série de novos apps, com o objetivo de registrar as atividades do usuário, como os livros que ele leu, as músicas que escutou, os esportes que praticou, lugares onde esteve, pratos&amp;nbsp;que ele&amp;nbsp;cozinhou&amp;nbsp;etc.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Dessa forma, as músicas que o usuário ouvir no Spotify, por exemplo, poderão ser todas registradas em sua timeline.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;De acordo com o Facebook, alguns dos aplicativos já estarão disponíveis a partir de agora, porém os novos perfis ainda precisarão de algumas semanas para irem ao ar.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Mark Zuckerberg também anunciou que, atualmente, 500 milhões de pessoas estão acessando a rede social diariamente. Segundo ele, o objetivo agora&amp;nbsp;é, mais do que continuar a crescer, gerar o engajamento dos usuários.&lt;/div&gt;&lt;span class="Apple-style-span" style="font-size: xx-small;"&gt;fonte: http://info.abril.com.br/&lt;/span&gt;</description><link>http://computacaotop10.blogspot.com/2011/09/mudancas-no-facebook.html</link><author>noreply@blogger.com (Amauri)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFfHfFaf9hQO29jtZxlrDrN3kVRI9DPZ38nPw2eJLhyphenhyphenkQbedB-SDEOHcmvF_Y3czjrUHCMqHjLJTzVQRImgYYatUgc7dpn0ss6yiANa_LQhyphenhyphen4jTTMuUjZRlTEMDF3gklJi_0_LuN7dfNs/s72-c/como-colocar-musica-no-perfil-do-facebook.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-1761908911875419328</guid><pubDate>Thu, 22 Sep 2011 18:39:00 +0000</pubDate><atom:updated>2011-09-22T15:39:18.122-03:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Pascal</category><title>PILHA EM PASCAL: um procedimento para imprimir todos os elementos de uma pilha</title><description>program exe5;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #93c47d;"&gt;//Autor: Cícero Amauri&lt;/span&gt;&lt;br /&gt;
const max = 5;&lt;br /&gt;
type&lt;br /&gt;
&amp;nbsp; &amp;nbsp;pilha = record&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; obj: array [1..max] of string;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; i: integer;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; end;&lt;br /&gt;
procedure criar (x: pilha);&lt;br /&gt;
&amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; x.i := 0;&lt;br /&gt;
&amp;nbsp; end;&lt;br /&gt;
&amp;nbsp; procedure push(var x:pilha; y: string);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; x.i:= x.i +1;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; x.obj[x.i] := y;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; procedure pop(var x:pilha);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; repeat&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; writeln( x.obj[x.i]);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; x.i := x.i - 1;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; until (x.i = 0);&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;end;&lt;br /&gt;
var&lt;br /&gt;
&amp;nbsp; p: pilha;&lt;br /&gt;
&amp;nbsp; elemento: string;&lt;br /&gt;
&amp;nbsp; a : integer;&lt;br /&gt;
begin&lt;br /&gt;
&amp;nbsp; criar(p);&lt;br /&gt;
&amp;nbsp; for a := 1 to max do&lt;br /&gt;
&amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; readln(elemento);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; push (p, elemento);&lt;br /&gt;
&amp;nbsp; end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;pop(p);&lt;br /&gt;
end.</description><link>http://computacaotop10.blogspot.com/2011/09/pilha-em-pascal-um-procedimento-para_22.html</link><author>noreply@blogger.com (Amauri)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-4551020543470229686</guid><pubDate>Thu, 22 Sep 2011 18:19:00 +0000</pubDate><atom:updated>2011-09-22T15:19:58.212-03:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Pascal</category><title>PILHA EM PASCAL: uma função que retorna quantos elementos possui uma pilha</title><description>PROGRAM EXE4;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #6aa84f;"&gt;// AUTOR: CÍCERO AMAURI&lt;/span&gt;&lt;br /&gt;
TYPE&lt;br /&gt;
&amp;nbsp; &amp;nbsp;PILHA = RECORD&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;OBJ: ARRAY [1..100] OF STRING;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;N: INTEGER;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;END;&lt;br /&gt;
&amp;nbsp; PROCEDURE INIT (VAR X: PILHA);&lt;br /&gt;
&amp;nbsp; BEGIN&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;X.N := 0;&lt;br /&gt;
&amp;nbsp; END;&lt;br /&gt;
&amp;nbsp; PROCEDURE PUSH ( VAR X: PILHA; Y: STRING);&lt;br /&gt;
&amp;nbsp; BEGIN&lt;br /&gt;
&amp;nbsp; &amp;nbsp; X.N := X.N + 1;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; X.OBJ[X.N] := Y;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; WRITELN ('ELEMENTO ADICIONADO');&lt;br /&gt;
&amp;nbsp; END;&lt;br /&gt;
&amp;nbsp; FUNCTION Q(X: PILHA): INTEGER;&lt;br /&gt;
&amp;nbsp; BEGIN&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;Q:= X.N;&lt;br /&gt;
&amp;nbsp; END;&lt;br /&gt;
VAR&lt;br /&gt;
&amp;nbsp; P: PILHA;&lt;br /&gt;
&amp;nbsp; I, QTDE: INTEGER;&lt;br /&gt;
&amp;nbsp; ELEMENTO: STRING;&lt;br /&gt;
BEGIN&lt;br /&gt;
&amp;nbsp; INIT(P);&lt;br /&gt;
&amp;nbsp; REPEAT&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;WRITELN ('ADICIONE OS ELEMENTOS NA PILHA: ');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;READLN (ELEMENTO);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;PUSH (P, ELEMENTO);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;WRITELN ('DIGITE');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;WRITELN ( '1 PARA ADICIONAR OUTRO ELEMENTO');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;WRITELN ( '2 PARA VERIFICAR QUANTOS ELEMENTOS TEM NA PILHA');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;READLN (I);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;IF I = 2 THEN&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;BEGIN&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;QTDE := Q(P);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;WRITELN ('NA PILHA POSSUEM ',QTDE,' ELEMENTOS');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;END;&lt;br /&gt;
&amp;nbsp; UNTIL (I &amp;gt; 1);&lt;br /&gt;
END.</description><link>http://computacaotop10.blogspot.com/2011/09/pilha-em-pascal-uma-funcao-que-retorna.html</link><author>noreply@blogger.com (Amauri)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-7270762376329958209</guid><pubDate>Thu, 22 Sep 2011 17:45:00 +0000</pubDate><atom:updated>2011-09-22T14:45:54.569-03:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Pascal</category><title>PILHA EM PASCAL: um procedimento para esvaziar uma pilha</title><description>program exe3;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #38761d;"&gt;//autor: Cícero Amauri&lt;/span&gt;&lt;br /&gt;
const max = 5;&lt;br /&gt;
type&lt;br /&gt;
&amp;nbsp; &amp;nbsp;pilha = record&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; x: integer;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; obj :array [1..max] of string;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; end;&lt;br /&gt;
&amp;nbsp;procedure init(var n:pilha);&lt;br /&gt;
&amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp;n.x := 0;&lt;br /&gt;
&amp;nbsp;end;&lt;br /&gt;
&amp;nbsp;procedure push(var n:pilha; o: string);&lt;br /&gt;
&amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp;n.x := n.x + 1;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;n.obj[n.x]:= o;&lt;br /&gt;
&amp;nbsp;end;&lt;br /&gt;
&amp;nbsp;function IsEmpty ( n: pilha):boolean;&lt;br /&gt;
&amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp;if n.x = 0 then&lt;br /&gt;
&amp;nbsp; &amp;nbsp;IsEmpty := true&lt;br /&gt;
&amp;nbsp; &amp;nbsp;else&lt;br /&gt;
&amp;nbsp; &amp;nbsp;IsEmpty := false;&lt;br /&gt;
&amp;nbsp;end;&lt;br /&gt;
&amp;nbsp;procedure pop (var n:pilha);&lt;br /&gt;
&amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; writeln (n.obj[n.x]);&lt;br /&gt;
&amp;nbsp; &amp;nbsp;n.x:= n.x - 1;&lt;br /&gt;
&amp;nbsp;end;&lt;br /&gt;
var&lt;br /&gt;
&amp;nbsp; p: pilha;&lt;br /&gt;
&amp;nbsp; i: integer;&lt;br /&gt;
&amp;nbsp; elem: string;&lt;br /&gt;
begin&lt;br /&gt;
&amp;nbsp; init(p);&lt;br /&gt;
&amp;nbsp; for i := 1 to max do&lt;br /&gt;
&amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; readln (elem);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; push (p, elem);&lt;br /&gt;
&amp;nbsp; end;&lt;br /&gt;
&amp;nbsp; while not IsEmpty (p) do&lt;br /&gt;
&amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; pop (p);&lt;br /&gt;
&amp;nbsp; end;&lt;br /&gt;
&amp;nbsp; writeln ('a pilha esta vazia ? ', IsEmpty(p));&lt;br /&gt;
end.</description><link>http://computacaotop10.blogspot.com/2011/09/pilha-em-pascal-um-procedimento-para.html</link><author>noreply@blogger.com (Amauri)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-3061613131508355457</guid><pubDate>Wed, 21 Sep 2011 14:33:00 +0000</pubDate><atom:updated>2011-09-21T11:33:32.093-03:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Pascal</category><title>PILHA EM PASCAL: um procedimento que informa quantas vezes um dado elemento se encontra em uma pilha.</title><description>program exe2;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #38761d;"&gt;// Autor: Cícero Amauri&lt;/span&gt;&lt;br /&gt;
const max = 5;&lt;br /&gt;
type&lt;br /&gt;
&amp;nbsp; &amp;nbsp;pilha = record&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; obj: array [1..max] of string;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; i: integer;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; end;&lt;br /&gt;
procedure criar (x: pilha);&lt;br /&gt;
&amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; x.i := 0;&lt;br /&gt;
&amp;nbsp; end;&lt;br /&gt;
&amp;nbsp; procedure push(var x:pilha; y: string);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; x.i:= x.i +1;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; x.obj[x.i] := y;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; procedure pop (var x:pilha; y: string);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; var&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; e, a: integer;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; ver: string;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;a := 0;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;repeat&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ver:= x.obj[x.i];&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; x.i := x.i - 1;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (x.i = max) then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; e := 0;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (ver = y) then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; e:= e + 1;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; a:= 1&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (x.i = 0 ) then&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; writeln ('o elemento ',y,' repete ',e,' vezes na pilha');&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (x.i = 0) and (a &amp;lt;&amp;gt; 1 ) then&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;   &lt;/span&gt; &amp;nbsp;writeln ('o elemento não está na pilha');&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;until (x.i = 0); &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;end;&lt;br /&gt;
var&lt;br /&gt;
&amp;nbsp; p: pilha;&lt;br /&gt;
&amp;nbsp; elemento,busca: string;&lt;br /&gt;
&amp;nbsp; a : integer;&lt;br /&gt;
begin&lt;br /&gt;
&amp;nbsp; criar(p);&lt;br /&gt;
&amp;nbsp; for a := 1 to max do&lt;br /&gt;
&amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; readln(elemento);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; push (p, elemento);&lt;br /&gt;
&amp;nbsp; end;&lt;br /&gt;
&amp;nbsp;writeln ('digite o elemento que deseja procurar ');&lt;br /&gt;
&amp;nbsp;readln (busca);&lt;br /&gt;
&amp;nbsp; &amp;nbsp;pop(p, busca);&lt;br /&gt;
end.</description><link>http://computacaotop10.blogspot.com/2011/09/pilha-em-pascal-um-procedimento-que.html</link><author>noreply@blogger.com (Amauri)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-1471677122214693779</guid><pubDate>Wed, 21 Sep 2011 12:09:00 +0000</pubDate><atom:updated>2011-09-21T11:34:26.438-03:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Pascal</category><title>PILHA EM PASCAL: Um procedimento que verifica se um dado elemento se encontra em uma pilha.</title><description>&lt;div&gt;&lt;br /&gt;
Program exe1 ;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #38761d;"&gt;//autor: Cícero Amauri&lt;/span&gt;&lt;br /&gt;
const max = 5 ;&lt;br /&gt;
type&lt;br /&gt;
&amp;nbsp; &amp;nbsp; pilha = record&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;obj: array [1..max] of string;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;cont: integer;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; end;&lt;br /&gt;
procedure criar (var x: pilha);&lt;br /&gt;
&amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;x.cont := 0; &amp;nbsp; &lt;br /&gt;
&amp;nbsp; end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;procedure push(var x: pilha; y:string);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;x.cont := x.cont + 1;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;x.obj[x.cont]:= y;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;procedure pop(var x: pilha; y:string);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; v: string;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; v := x.obj[x.cont];&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; x.cont := x.cont - 1;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (v = y) then&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;write('o elemento " ',v);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;writeln (' " está na pilha');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; end;&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt; &amp;nbsp;function vazia(x:pilha):boolean ;&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt; &amp;nbsp;begin&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt; &amp;nbsp; &amp;nbsp;if x.cont = 0 then&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt; &amp;nbsp; &amp;nbsp;vazia := true&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt; &amp;nbsp; &amp;nbsp; else&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt; &amp;nbsp; &amp;nbsp; vazia := false ;&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt; &amp;nbsp;end;&lt;br /&gt;
var&lt;br /&gt;
&amp;nbsp; &amp;nbsp;c, elemento, busca: string[6];&lt;br /&gt;
&amp;nbsp; &amp;nbsp;pi: pilha;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;i: integer;&lt;br /&gt;
&amp;nbsp;Begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp;criar (pi);&lt;br /&gt;
&amp;nbsp; &amp;nbsp;for i := 1 to max do&lt;br /&gt;
&amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;readln(elemento);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;push (pi, elemento);&lt;br /&gt;
&amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;write( 'digite o elemento que deseja procurar: ');&lt;br /&gt;
&amp;nbsp; &amp;nbsp;readln (busca);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; repeat&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; pop(pi, busca);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; until (vazia(pi)= true);&lt;br /&gt;
&amp;nbsp;End.&lt;/div&gt;</description><link>http://computacaotop10.blogspot.com/2011/09/pilha-pascal-um-procedimento-que.html</link><author>noreply@blogger.com (Amauri)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-1170599055412781015</guid><pubDate>Tue, 20 Sep 2011 17:36:00 +0000</pubDate><atom:updated>2011-09-20T14:36:23.488-03:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Pascal</category><title>PILHA EM PASCAL: adicionando e removendo elementos</title><description>Program pilha ;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: lime;"&gt;// autor: Cícero Amauri&lt;/span&gt;&lt;br /&gt;
const max = 4;&lt;br /&gt;
type &amp;nbsp;pilha = record&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;obj : array[1..max] of string;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;j : integer;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; end;&lt;br /&gt;
var&lt;br /&gt;
&amp;nbsp;p1 : pilha;&lt;br /&gt;
&amp;nbsp;i: integer;&lt;br /&gt;
&amp;nbsp;objeto: string;&lt;br /&gt;
procedure criar ( var p: pilha);&lt;span class="Apple-style-span" style="color: lime;"&gt; // cria a pilha&lt;/span&gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;p.j := 0;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;end;&lt;br /&gt;
procedure push(var p:pilha; ob: string); &lt;span class="Apple-style-span" style="color: lime;"&gt;// adiciona elementos na pilha&lt;/span&gt;&lt;br /&gt;
&amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; p.j := p.j + 1;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; p.obj[p.j] := ob;&lt;br /&gt;
&amp;nbsp; end;&lt;br /&gt;
function pop (var p: pilha):string; &lt;span class="Apple-style-span" style="color: lime;"&gt;&amp;nbsp;// retira os elementos da pilha&lt;/span&gt;&lt;br /&gt;
&amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; pop := p.obj[p.j];&lt;br /&gt;
&amp;nbsp; &amp;nbsp; p.j:= p.j-1;&lt;br /&gt;
&amp;nbsp; end;&lt;br /&gt;
&amp;nbsp; function vazia(var p: pilha):boolean; &lt;span class="Apple-style-span" style="color: lime;"&gt;// indica se a pilha está vazia&lt;/span&gt;&lt;br /&gt;
&amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;if p.j = 0 then&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;vazia:= true&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;else&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt; &amp;nbsp;vazia := false;&lt;br /&gt;
&amp;nbsp; end;&lt;br /&gt;
&amp;nbsp;Begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; criar (p1);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; for i:= 1 to max do&lt;br /&gt;
&amp;nbsp; &amp;nbsp; begin&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; readln (objeto);&lt;span class="Apple-style-span" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="color: lime;"&gt;// o usuario informar os elementos para inserir na pilha&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; push (p1,objeto); &lt;span class="Apple-style-span" style="color: lime;"&gt;// chama o procedimento para colocar os elementos na pilha&lt;/span&gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; end;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; writeln ('saída da pilha');&lt;br /&gt;
&amp;nbsp; &amp;nbsp; repeat&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;writeln(pop(p1));&lt;br /&gt;
&amp;nbsp; &amp;nbsp; until (vazia(p1)= true);&lt;span class="Apple-style-span" style="color: lime;"&gt; // repete até que a pilha esteja vazia&lt;/span&gt;&lt;br /&gt;
&amp;nbsp;End.</description><link>http://computacaotop10.blogspot.com/2011/09/pilha-em-pascal-adicionando-e-removendo.html</link><author>noreply@blogger.com (Amauri)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-75591998015443014</guid><pubDate>Tue, 20 Sep 2011 11:06:00 +0000</pubDate><atom:updated>2011-09-20T08:06:47.675-03:00</atom:updated><title>ICMS deixa banda larga cara demais, diz ONU</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigtsy3Jp6ON1FoXOrssaNM-j5tJbeop3zHF3TZgAZfcypp8f_DJHLRg61e_K9NJS_kSTDdtWzmGktssxi0Dy60rwXQCKc1zC9PHMXu4RwotUWDt-z-wwh0e3CR9NLRV5VDW971Lk3F-k8/s1600/imagem.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="206" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigtsy3Jp6ON1FoXOrssaNM-j5tJbeop3zHF3TZgAZfcypp8f_DJHLRg61e_K9NJS_kSTDdtWzmGktssxi0Dy60rwXQCKc1zC9PHMXu4RwotUWDt-z-wwh0e3CR9NLRV5VDW971Lk3F-k8/s400/imagem.JPG" width="400" /&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; font-family: Arial,Helvetica,sans-serif; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; font-family: Arial,Helvetica,sans-serif; text-align: center;"&gt;&lt;span style="font-size: small;"&gt;Os elevados impostos cobrados pelos governos estaduais, e não pelo  governo federal, são a principal razão da banda larga custar caro no  Brasil.&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; font-family: Arial,Helvetica,sans-serif; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; font-family: Arial,Helvetica,sans-serif; text-align: center;"&gt; &lt;/div&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;A afirmação é do secretário-geral da UIT (União Internacional  de Telecomunicações), Hamadoun Touré, que, em visita ao Brasil, defendeu  um corte nos impostos dos governos estaduais, como o ICMS, como forma  de universalizar o acesso à web no país.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif; text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;Segundo ele, isso não ocorre por causa do preço cobrado das  operadoras nem dos impostos federais, mas pelos impostos estaduais que  incidem sobre os serviços.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif;"&gt; &lt;/div&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif; text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;“O Brasil tem os maiores impostos locais [estaduais] do mundo  no setor e isso prejudica a sua imagem”, disse Touré, ao participar de  palestra na Agência Nacional de Telecomunicações (Anatel). Ele lembrou  casos de outros países como Bangladesh e Paquistão, onde os impostos,  que eram considerados muito altos, foram reduzidos, mas a receita não  caiu porque o uso dos serviços aumentou.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif; text-align: justify;"&gt; &lt;/div&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif; text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;A UIT é a agência especializada da Organização das Nações Unidas (ONU) para as áreas de Tecnologia da Informação e Comunicação.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif; text-align: justify;"&gt; &lt;/div&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif; text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;Estudo divulgado hoje pela UIT mostra que os brasileiros  gastam cerca de 4,8% de sua renda com o pagamento de serviços de  comunicação, o que coloca o Brasil em 96º lugar em uma lista que  classifica 165 países de acordo com o preço dos serviços de  telecomunicações em relação à renda per capita.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif; text-align: justify;"&gt; &lt;/div&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif; text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;O representante da UIT destacou ainda a melhora do Brasil em  índices de penetração dos serviços de banda larga e telefonia móvel e o  desenvolvimento de tecnologias da informação e comunicação.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif; text-align: justify;"&gt; &lt;/div&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif; text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;Touré também considerou como excelente o anúncio do governo  federal de que vai publicar em breve a medida provisória que cria o  Regime Especial de Tributação do Programa Nacional de Banda Larga  (PNBL).&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;span style="font-size: xx-small;"&gt;Fonte: http://info.abril.com.br/noticias/mercado/brasil-lidera-em-impostos-para-ti-diz-onu-19092011-11.shl &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;</description><link>http://computacaotop10.blogspot.com/2011/09/icms-deixa-banda-larga-cara-demais-diz.html</link><author>noreply@blogger.com (Computação Top10)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigtsy3Jp6ON1FoXOrssaNM-j5tJbeop3zHF3TZgAZfcypp8f_DJHLRg61e_K9NJS_kSTDdtWzmGktssxi0Dy60rwXQCKc1zC9PHMXu4RwotUWDt-z-wwh0e3CR9NLRV5VDW971Lk3F-k8/s72-c/imagem.JPG" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-3292387204764610082</guid><pubDate>Tue, 20 Sep 2011 00:33:00 +0000</pubDate><atom:updated>2011-09-19T21:36:37.019-03:00</atom:updated><title>Saiba o que é a Maratona de Programação SBC.</title><description>&lt;span class="Apple-style-span" style="background-color: white;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiqtQfhDOAXJZDDy9OkNXhp8RwK-r-XTSiTrC05h8Zs1vbXwWaCXk7QeLC4nLKYwyq8MSB2TTeccULk-r4zmHoLw3Mj13ot25JyGXbcVaYZ5yx-EB_cwqLDljgupBe4gCzklFckjBRPi0g/s1600/logomdp.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiqtQfhDOAXJZDDy9OkNXhp8RwK-r-XTSiTrC05h8Zs1vbXwWaCXk7QeLC4nLKYwyq8MSB2TTeccULk-r4zmHoLw3Mj13ot25JyGXbcVaYZ5yx-EB_cwqLDljgupBe4gCzklFckjBRPi0g/s1600/logomdp.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="background-color: white;"&gt;A Maratona de Programação é um evento da Sociedade Brasileira de Computação que existe desde o ano de 1996. Desde o ano de 2006 o evento vem sendo realizado em parceria com a&amp;nbsp;&lt;a href="http://www.fcc.org.br/"&gt;Fundação Carlos Chagas&lt;/a&gt;. A Maratona nasceu das competições regionais classificatórias para as finais mundiais do concurso de programação da ACM, o&amp;nbsp;&lt;a href="http://icpc.baylor.edu/"&gt;ACM International Collegiate Programming Contest&lt;/a&gt;, e é parte da&amp;nbsp;&lt;a href="http://www.ic.unicamp.br/~acmcntst"&gt;regional sulamericana&lt;/a&gt;&amp;nbsp;do concurso. Neste ano ocorre a 16a. edição da Maratona.&lt;/span&gt;&lt;br /&gt;
Ela se destina a alunos de cursos de graduação e início de pós-graduação na área de Computação e afins (Ciência da Computação, Engenharia de Computação, Sistemas de Informação, Matemática, etc). A competição promove nos alunos a criatividade, a capacidade de trabalho em equipe, a busca de novas soluções de software e a habilidade de resolver problemas sob pressão. De ano para ano temos observado que as instituições e principalmente as grandes empresas da área têm valorizado os alunos que participam da Maratona.&lt;br /&gt;
Várias universidades do Brasil desenvolvem concursos locais para escolher os melhores times para participar da Maratona de Programação. Estes times competem na Maratona (e portanto na regional sulamericana) de onde os melhores serão selecionados para participar das Finais Mundiais do evento. No ano de 2010, mais de 22 mil estudantes de quase 2000 escolas de mais de 80 países competiram em regionais em todo o planeta, e apenas 100 (cerca de 0.5%) participaram das Finais Mundiais do evento, em Orlando, Estados Unidos.&amp;nbsp;&lt;a href="http://maratona.ime.usp.br/wf11.html"&gt;Seis times brasileiros estiveram presentes nas finais mundiais&lt;/a&gt;.&lt;br /&gt;
Os times são compostos por três alunos, que tentarão resolver durante 5 horas o maior número possível dos 8 ou mais problemas que são entregues no início da competição. Estes alunos têm à sua disposição apenas um computador e material impresso (livros, listagens, manuais) para vencer a batalha contra o relógio e os problemas propostos.&lt;br /&gt;
Os competidores do time devem colaborar para descobrir os problemas mais fáceis, projetar os testes, e construir as soluções que sejam aprovadas pelos juízes da competição. Alguns problemas requerem apenas compreensão, outros conhecimento de técnicas mais sofisticadas, e alguns podem ser realmente muito difíceis de serem resolvidos.&lt;br /&gt;
O julgamento é estrito. No início da competição os competidores recebem os problemas que devem ser resolvidos. Nos enunciados dos problemas constam exemplos dos dados dos problemas, mas eles não têm acesso às instâncias testadas pelos juízes. A cada submissão incorreta de um problema (ou seja, que deu resposta incorreta a uma das instâncias dos juízes) é atribuída uma penalidade de tempo. O time que conseguir resolver o maior número de problemas (no menor tempo acumulado com as penalidades, caso haja empate) é declarado o vencedor.&lt;br /&gt;
fonte:&amp;nbsp;http://maratona.ime.usp.br</description><link>http://computacaotop10.blogspot.com/2011/09/saiba-o-que-e-maratona-de-programacao.html</link><author>noreply@blogger.com (Computação Top10)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiqtQfhDOAXJZDDy9OkNXhp8RwK-r-XTSiTrC05h8Zs1vbXwWaCXk7QeLC4nLKYwyq8MSB2TTeccULk-r4zmHoLw3Mj13ot25JyGXbcVaYZ5yx-EB_cwqLDljgupBe4gCzklFckjBRPi0g/s72-c/logomdp.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-8066541171280847453</guid><pubDate>Sun, 18 Sep 2011 16:11:00 +0000</pubDate><atom:updated>2011-09-18T13:11:50.452-03:00</atom:updated><title>Brasília terá internet gratuita para Copa</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxvdCTuzb-ee4EXtt3dc8REriXsSYGMxUiKW21QA9E234HajXYP9vCqalbWwkK2bKbp-MCy9Aih-BiH2S__OellUJoGvcTruPM34RqgK67UzAmbrCFtWfvpIZudrM5lLfk-Pr53KSJBZM/s1600/Agnelo_Brasilia-20110917113809.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="235" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxvdCTuzb-ee4EXtt3dc8REriXsSYGMxUiKW21QA9E234HajXYP9vCqalbWwkK2bKbp-MCy9Aih-BiH2S__OellUJoGvcTruPM34RqgK67UzAmbrCFtWfvpIZudrM5lLfk-Pr53KSJBZM/s320/Agnelo_Brasilia-20110917113809.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #333333; font-family: arial; font-size: 15px; line-height: 22px;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left;"&gt;São Paulo - O governador do Distrito Federal, Agnelo Queiroz, anunciou que o entorno do Estádio Nacional de Brasília, o Parque da Cidade e a Rodoviária do Plano Piloto serão os primeiros locais da capital atendidos por uma rede gratuita de banda larga sem fio para acesso à internet.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left;"&gt;O governo também afirmou que há um projeto para implantar internet gratuita em três regiões administrativas do DF, mas o anúncio deve ser feito em breve, após o prazo de licitação.O sinal terá capacidade de 2 Gbps.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left;"&gt;O governo também prevê utilizar uma verba auxiliar de cerca de R$ 80 milhões para implantar o sistema por todo o DF, de forma gradual. Segundo o governo a ideia é disponibilizar a internet banda larga gratuita em locais públicos da área urbana e rural em um prazo de 18 a 24 meses.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left;"&gt;“Vai ser a primeira capital a ter cobertura total de banda larga”, disse o governador. Ele quer que a população aproveite a banda larga grátis para testar a velocidade e abrangência das antenas e dos rádios, pois a cidade deseja receber o jogo de abertura da Copa de 2014.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left;"&gt;&lt;em style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;*com informações da Agência Brasil&lt;/em&gt;&lt;/div&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #333333; font-family: arial; font-size: 15px; line-height: 22px;"&gt;&lt;a href="http://info.abril.com.br/"&gt;&lt;span class="Apple-style-span" style="-webkit-text-decorations-in-effect: none; color: #333333;"&gt;&lt;em style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;fonte:&amp;nbsp;&lt;/em&gt;&lt;/span&gt;http://info.abril.com.br&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #333333; font-family: arial; font-size: 15px; line-height: 22px;"&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left;"&gt;&lt;i&gt;&lt;br /&gt;
&lt;/i&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-left: 0px; margin-right: 0px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/span&gt;</description><link>http://computacaotop10.blogspot.com/2011/09/brasilia-tera-internet-gratuita-para.html</link><author>noreply@blogger.com (Amauri)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxvdCTuzb-ee4EXtt3dc8REriXsSYGMxUiKW21QA9E234HajXYP9vCqalbWwkK2bKbp-MCy9Aih-BiH2S__OellUJoGvcTruPM34RqgK67UzAmbrCFtWfvpIZudrM5lLfk-Pr53KSJBZM/s72-c/Agnelo_Brasilia-20110917113809.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-2460090862170048589</guid><pubDate>Sun, 18 Sep 2011 16:07:00 +0000</pubDate><atom:updated>2011-09-18T13:15:54.140-03:00</atom:updated><title>GVT estreia pacote de banda larga de 35 mega</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgfjxcVCG9cf_U0vE5p_VTrXzje-BG1IPUa-l8VS_Aez-0RSlA_lpOjyVkht2n1YAv56Oynx7rIuNoHdS1pY36b90nTIoHbOxfVejeYjeK-OcPZIyzWemcMMiBbgBj3pfk5afRq7D-qUHE/s1600/gvt-banda-larga-20110912125148.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="235" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgfjxcVCG9cf_U0vE5p_VTrXzje-BG1IPUa-l8VS_Aez-0RSlA_lpOjyVkht2n1YAv56Oynx7rIuNoHdS1pY36b90nTIoHbOxfVejeYjeK-OcPZIyzWemcMMiBbgBj3pfk5afRq7D-qUHE/s320/gvt-banda-larga-20110912125148.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
São Paulo - A GVT lançará hoje na Futurecom 2011 um pacote de banda larga de 35 mega a R$ 99,00 uma redução em relação ao valor praticado anteriormente de R$ 199.&lt;br /&gt;
&lt;br /&gt;
O presidente da GVT, Amos Genish, afirmou que pelo mesmo preço em 2012 o pacote poderá crescer para 50 mega. "Hoje, 56% das novas vendas da GVT em banda larga são 15 de mega ou mais. Isso significa que, quando se apresenta ao usuário um preço acessível, ele, que tem necessidade, vai comprar", disse o executivo, que falou na abertura do congresso, logo após o presidente da Agência Nacional de Telecomunicações (Anatel), Ronaldo Sardenberg.&lt;br /&gt;
Em uma clara crítica à Anatel, o presidente da GVT disse que investimento em Backbone (infraestrutura de rede) é chave e que a agência tem a oportunidade de tornar o preço acessível para a população. "De verdade, ninguém vai acreditar que 1 mega a R$ 35 com garantia mínima de download de só 10% seja o suficiente. Tudo bem para começar, mas não é ideal para o futuro".&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #333333; font-family: arial; font-size: 15px; line-height: 22px;"&gt;&lt;a href="http://info.abril.com.br/" style="color: #24618e; text-decoration: underline;"&gt;&lt;span class="Apple-style-span" style="-webkit-text-decorations-in-effect: none; color: #333333;"&gt;&lt;em style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;fonte:&amp;nbsp;&lt;/em&gt;&lt;/span&gt;http://info.abril.com.br&lt;/a&gt;&lt;/span&gt;</description><link>http://computacaotop10.blogspot.com/2011/09/gvt-estreia-pacote-de-banda-larga-de-35.html</link><author>noreply@blogger.com (Amauri)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgfjxcVCG9cf_U0vE5p_VTrXzje-BG1IPUa-l8VS_Aez-0RSlA_lpOjyVkht2n1YAv56Oynx7rIuNoHdS1pY36b90nTIoHbOxfVejeYjeK-OcPZIyzWemcMMiBbgBj3pfk5afRq7D-qUHE/s72-c/gvt-banda-larga-20110912125148.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-9059544332245954300</guid><pubDate>Fri, 16 Sep 2011 11:06:00 +0000</pubDate><atom:updated>2011-09-16T08:06:04.289-03:00</atom:updated><title>YouTube lança editor de vídeos online</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi4EaylF3NpCHwQXvz6Aj2Xfix2kEUhMYp9BaarHOxKvhq-IwRpL3nrL55YBxjnvwpI-T5RZXFeLYvcRDuZypd-4Ecb3DmtyKtvC_c2ETFgrFU9_BrgJckfePTM046vK7AnMPBiNq8AIIo/s1600/imagem.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="205" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi4EaylF3NpCHwQXvz6Aj2Xfix2kEUhMYp9BaarHOxKvhq-IwRpL3nrL55YBxjnvwpI-T5RZXFeLYvcRDuZypd-4Ecb3DmtyKtvC_c2ETFgrFU9_BrgJckfePTM046vK7AnMPBiNq8AIIo/s400/imagem.JPG" width="400" /&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: justify;"&gt;O YouTube apresentou ontem uma nova ferramenta para a edição online  de vídeos. Dessa forma, o usuário poderá carregar seus vídeos e  editá-los sem a necessidade de recorrer a outras plataformas.&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Com a ferramenta, o usuário pode realizar cortes, girar o  vídeo para a esquerda ou para a direita, remover movimentos instáveis de  câmera, ajustar níveis de cores, luz e contraste, adicionar efeitos e  trilhas sonoras, entre outros.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Caso não goste das alterações feitas em seu filme, o usuário pode voltar para versão do vídeo.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div style="text-align: justify;"&gt;O botão de acesso à opção já está disponível para clientes  brasileiros e aparece logo acima do vídeo a ser editado - é preciso  estar logado para ter acesso.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;iframe allowfullscreen='allowfullscreen' webkitallowfullscreen='webkitallowfullscreen' mozallowfullscreen='mozallowfullscreen' width='320' height='266' src='https://www.youtube.com/embed/G-n9p28Yh8w?feature=player_embedded' frameborder='0'&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;br /&gt;
&lt;span style="font-size: xx-small;"&gt;Fonte: http://info.abril.com.br/noticias/internet/youtube-lanca-editor-de-videos-online-15092011-1.shl&lt;/span&gt;</description><link>http://computacaotop10.blogspot.com/2011/09/youtube-lanca-editor-de-videos-online.html</link><author>noreply@blogger.com (Computação Top10)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi4EaylF3NpCHwQXvz6Aj2Xfix2kEUhMYp9BaarHOxKvhq-IwRpL3nrL55YBxjnvwpI-T5RZXFeLYvcRDuZypd-4Ecb3DmtyKtvC_c2ETFgrFU9_BrgJckfePTM046vK7AnMPBiNq8AIIo/s72-c/imagem.JPG" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-4161576408978166151</guid><pubDate>Wed, 14 Sep 2011 18:35:00 +0000</pubDate><atom:updated>2011-09-14T15:35:58.988-03:00</atom:updated><title>Facebook vai permitir seguir usuários</title><description>&lt;span class="Apple-style-span" style="font-family: arial; font-size: 15px; line-height: 22px;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; color: #333333; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQsu9uFxRVrAvJyWG9Rkd82Cfb4tu3boUDuZSH6lHjuZWmpzoZGOWRKF40yW1KwTujOqiw_j9w6bA0SmzAoZuV5SxnCP4YhPqvbn9IzSBo0Cq4p2tEYDDLdOaEBmApXkSu0PRYHj5rH4o/s1600/facebook-20110914143113.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="293" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQsu9uFxRVrAvJyWG9Rkd82Cfb4tu3boUDuZSH6lHjuZWmpzoZGOWRKF40yW1KwTujOqiw_j9w6bA0SmzAoZuV5SxnCP4YhPqvbn9IzSBo0Cq4p2tEYDDLdOaEBmApXkSu0PRYHj5rH4o/s400/facebook-20110914143113.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; color: #333333; text-align: center;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; color: #333333; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;"&gt;O Facebook anunciou, hoje, que vai adicionar um novo botão de assinaturas, o qual irá permitir aos usuários acompanharem as atualizações de outros contatos sem adicioná-los como amigos.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;"&gt;Essa é mais uma tentativa do Facebook de incorporar ao seu sistema dinâmicas já lançadas pela Google+. Assim como no Twitter, a rede social do Google&amp;nbsp;permite aos seus clientes acompanharem as atualizações de uma conta sem estabelecer uma conexão de amizade.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;"&gt;De acordo com post publicado pelo Facebook, após fazer a “assinatura” de um perfil, o usuário poderá escolher se deseja receber todas as suas postagens ou somente as mais importantes. O recurso seria interessante, principalmente, para contas de personalidades, como artistas, políticos, jornalistas etc., que não possuem uma página para ser curtida.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;"&gt;Pelo outro lado, o usuário poderá escolher quais conteúdos estarão disponíveis para seus seguidores no momento de sua publicação – serão duas opções: aberto para todos ou somente amigos.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;"&gt;Para ativar o botão de assinaturas em seu perfil, basta o usuário ir até o endereço&lt;a href="http://www.facebook.com/about/subscriptions" style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;http://www.facebook.com/about/subscriptions&lt;/a&gt;.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;"&gt;Ontem, o Facebook anunciou que&amp;nbsp;&lt;strong style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; font-weight: bold; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;a href="http://info.abril.com.br/noticias/internet/facebook-vai-criar-listas-para-usuarios-13092011-28.shl" style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;irá sugerir listas de amigos&lt;/a&gt;&lt;/strong&gt;, de familiares, de colegas de escola e de moradores de uma mesma cidade aos seus usuários. &amp;nbsp;&lt;/div&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #333333; font-family: arial; line-height: 22px;"&gt;&lt;span class="Apple-style-span" style="font-size: xx-small;"&gt;Fonte:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #333333; font-family: arial; line-height: 22px;"&gt;&lt;span class="Apple-style-span" style="font-size: xx-small;"&gt;http://info.abril.com.br/noticias/internet/facebook-vai-permitir-seguir-usuarios-14092011-22.shl&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #333333; font-family: arial; font-size: 15px; line-height: 22px;"&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/span&gt;</description><link>http://computacaotop10.blogspot.com/2011/09/facebook-vai-permitir-seguir-usuarios.html</link><author>noreply@blogger.com (Computação Top10)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQsu9uFxRVrAvJyWG9Rkd82Cfb4tu3boUDuZSH6lHjuZWmpzoZGOWRKF40yW1KwTujOqiw_j9w6bA0SmzAoZuV5SxnCP4YhPqvbn9IzSBo0Cq4p2tEYDDLdOaEBmApXkSu0PRYHj5rH4o/s72-c/facebook-20110914143113.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1177411703097751229.post-1248966635003195328</guid><pubDate>Tue, 13 Sep 2011 17:19:00 +0000</pubDate><atom:updated>2011-09-13T14:25:31.401-03:00</atom:updated><title>Tumblr bate Twittter em tempo gasto nos EUA</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdkT5UCRjtxp5IAeVImLtiqA1R2mmoUK6gDnh-V4NNBwPoIt_r9R3XdtCKLTDKZSq6B3tLSBFkh0xqx3gNa2I2DttjCyz0clKub1cVwXfIO4HBGpHsxK6MShdXgqhV2wkKaMDXEh1vgG0/s1600/tumblr-20110831094335.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="293" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdkT5UCRjtxp5IAeVImLtiqA1R2mmoUK6gDnh-V4NNBwPoIt_r9R3XdtCKLTDKZSq6B3tLSBFkh0xqx3gNa2I2DttjCyz0clKub1cVwXfIO4HBGpHsxK6MShdXgqhV2wkKaMDXEh1vgG0/s400/tumblr-20110831094335.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #333333; font-family: arial; font-size: 15px; line-height: 22px;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;"&gt;O serviço de blogs Tumblr superou o Twitter em tempo gasto pelos usuários americanos e ficou com a terceira posição entre os serviços de mídias sociais no país.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;"&gt;Facebook e Blogger aparecem na primeira e segunda posição, respectivamente. O LinkedIn completa o time dos cinco primeiros.&amp;nbsp;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;"&gt;De acordo com um relatório divulgado pela Nielsen, os americanos passaram cerca de 623 minutos no Tumblr contra 565 no Twitter, durante o mês de maio deste ano.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;"&gt;Disparado na frente, o Facebook atingiu a marca de 54,4 mil minutos, enquanto o Blogger obteve 723,7 minutos. O LinkedIn ficou com 325,6 minutos.&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;"&gt;Levando em conta todos os serviços online – como notícias, busca, mapas etc – o Facebook manteve a liderança, seguido pelo Yahoo!, Google, AOL e sites da Microsoft (Bing, MSN e Windows Live).&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial; letter-spacing: -0.02em; list-style-type: none; margin-bottom: 15px; margin-top: 15px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;"&gt;Ainda segundo o relatório, o brasileiro é o segundo povo que mais gasta tempo navegando nos serviços de mídias sociais, ficando atrás somente da Austrália. França, Alemanha e Itália completam o time dos cinco primeiros.&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-size: xx-small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-size: xx-small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-size: xx-small;"&gt;Fonte:http://info.abril.com.br/noticias/internet/tumblr-bate-twittter-nos-eua-em-tempo-gasto-13092011-8.shl&lt;/span&gt;&lt;/div&gt;</description><link>http://computacaotop10.blogspot.com/2011/09/tumblr-bate-twittter-em-tempo-gasto-nos.html</link><author>noreply@blogger.com (Computação Top10)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdkT5UCRjtxp5IAeVImLtiqA1R2mmoUK6gDnh-V4NNBwPoIt_r9R3XdtCKLTDKZSq6B3tLSBFkh0xqx3gNa2I2DttjCyz0clKub1cVwXfIO4HBGpHsxK6MShdXgqhV2wkKaMDXEh1vgG0/s72-c/tumblr-20110831094335.jpg" width="72"/><thr:total>0</thr:total></item></channel></rss>