<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Beatriz Faria by Beatriiz Fariia</title>
      <link>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2016-12-06 11:23:58 UTC</pubDate>
      <lastBuildDate>2025-11-30 07:34:18 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>1º Trabalho: Tabuada - pascal</title>
         <author>bia_vicentefaria</author>
         <link>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/141971158</link>
         <description><![CDATA[<div>Program Tabuada;
<br>var tabuada,i,resultado:integer;
<br>Begin
<br>writeln('Qual a tabuada?');
<br>readln(tabuada);
<br>for i:=-100 to 100 do
<br>Begin
<br>resultado:=tabuada*i;
<br>writeln(tabuada,'x',i,'=',resultado);
<br>End;
<br>readln  
<br>End.</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-06 11:24:47 UTC</pubDate>
         <guid>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/141971158</guid>
      </item>
      <item>
         <title>2º Trabalho: Jogo do Galo - pascal</title>
         <author>bia_vicentefaria</author>
         <link>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/141971302</link>
         <description><![CDATA[<div>Program jogodogalo;
<br>type
<br>  matriz=array[1..3,1..3] of char;
<br>var
<br> mat:matriz;
<br> jog1,jog2:char;
<br> i,j,a,b,mov:integer;
<br>{------------------------ Procedimento para ler os valores para a matriz----}
<br>procedure teclas;
<br>begin
<br>        clrscr;
<br>        writeln;
<br>        writeln('Teclas do Jogo');
<br>        writeln;
<br>        writeln(' 7 | 8 | 9 ');
<br>        writeln('---+---+---');
<br>        writeln(' 4 | 5 | 6 ');
<br>        writeln('---+---+---');
<br>        writeln(' 1 | 2 | 3 ');
<br>end;
<br>{--------------------------- Fim do procedimento --------}
<br>{------------------------- Procedimento limpar valores da matriz ------ }
<br>
<br>procedure limpamat;
<br>begin
<br>  for i:=1 to 3 do
<br>      for j:=1 to 3 do mat[i,j]:=' ';
<br>end;
<br>      
<br>procedure jogo;
<br>begin
<br>        gotoxy(30,10);
<br>        writeln('Jogo do Galo');
<br>        gotoxy(30,12);
<br>        writeln(' ',mat[1,1],' | ',mat[1,2],' | ',mat[1,3]);
<br>        gotoxy(30,13);
<br>        writeln('---+---+---');
<br>        gotoxy(30,14);
<br>        writeln(' ',mat[2,1],' | ',mat[2,2],' | ',mat[2,3]);
<br>        gotoxy(30,15);
<br>        writeln('---+---+---');
<br>        gotoxy(30,16);
<br>        writeln(' ',mat[3,1],' | ',mat[3,2],' | ',mat[3,3]);
<br> 
<br>end;
<br>{-------------------- Fim do Procedimento -------}
<br> Begin
<br> limpamat;
<br>   writeln ('O Jogador 1 pretende utilizar o X ou O');
<br>   readln(jog1);
<br>   if (jog1='x')or(jog1='X') then
<br>	    begin 
<br>	      jog2:='o';
<br>	      jog1:='x';
<br>	     end         
<br>       else 
<br>       if (jog1='o')or(jog1='0') then 
<br>	    begin
<br>	     jog2:='x';
<br>	     jog1:='0';
<br>	    end;
<br>{------------------------------- chamada do Procedimento -----}
<br>            teclas;
<br>            {------------------------------ fim da chamada do Procedimento ---- }
<br>         {------------------------------- chamada do Procedimento 2 -----}
<br>            jogo;
<br>         {------------------------------ fim da chamada do Procedimento ---- }
<br>repeat 
<br> clrscr;
<br> teclas;
<br> jogo;
<br> writeln('Qual a posição para o jogador 1? 0 - para sair');
<br> readln(mov);
<br> if (mov=7) then mat[1,1]:=jog1;
<br> if (mov=8) then mat[1,2]:=jog1;
<br> if (mov=9) then mat[1,3]:=jog1;
<br> if (mov=4) then mat[2,1]:=jog1;
<br> if (mov=5) then mat[2,2]:=jog1;
<br> if (mov=6) then mat[2,3]:=jog1;
<br> if (mov=1) then mat[3,1]:=jog1;
<br> if (mov=2) then mat[3,2]:=jog1;
<br> if (mov=3) then mat[3,3]:=jog1;
<br> jogo;
<br> writeln('Qual a posição para o jogador 2? 0 - para sair');
<br> readln(mov);
<br> if (mov=7) then mat[1,1]:=jog2;
<br> if (mov=8) then mat[1,2]:=jog2;
<br> if (mov=9) then mat[1,3]:=jog2;
<br> if (mov=4) then mat[2,1]:=jog2;
<br> if (mov=5) then mat[2,2]:=jog2;
<br> if (mov=6) then mat[2,3]:=jog2;
<br> if (mov=1) then mat[3,1]:=jog2;
<br> if (mov=2) then mat[3,2]:=jog2;
<br> if (mov=3) then mat[3,3]:=jog2;
<br> jogo;
<br>until mov=0;
<br>readln(mov);
<br>End.
<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-06 11:25:38 UTC</pubDate>
         <guid>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/141971302</guid>
      </item>
      <item>
         <title>5w da nossa aplicação </title>
         <author>bia_vicentefaria</author>
         <link>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/143297201</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/aws/154588088/05db3e5907c05cd2c6bb60dcd34c0153/WP_20161206_10_17_44_Pro.jpg" />
         <pubDate>2016-12-13 08:48:21 UTC</pubDate>
         <guid>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/143297201</guid>
      </item>
      <item>
         <title>Um design da nossa aplicação </title>
         <author>bia_vicentefaria</author>
         <link>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/143297359</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/aws/154588088/21efa6cbb131154f3e834c19186fb3d6/IMG_1606.jpg" />
         <pubDate>2016-12-13 08:49:18 UTC</pubDate>
         <guid>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/143297359</guid>
      </item>
      <item>
         <title></title>
         <author>bia_vicentefaria</author>
         <link>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/143299281</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://media.padletcdn.com/v13/image/a_exif,c_thumb,dpr_1.0,g_auto,h_24,w_24/https%3A%2F%2Fresources.padletcdn.com%2Favatars%2Fwatercolor72.jpg" />
         <pubDate>2016-12-13 09:02:15 UTC</pubDate>
         <guid>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/143299281</guid>
      </item>
      <item>
         <title>Funções dos membros do grupo</title>
         <author>bia_vicentefaria</author>
         <link>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/143299345</link>
         <description><![CDATA[<div>Beatriz Faria: Design<br>                         Criativa<br>Maria Nazário: Empreendedora<br>                           Comunicadora<br>Jorge Ferreira: Organizador<br>                           Especialista técnico </div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-13 09:02:43 UTC</pubDate>
         <guid>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/143299345</guid>
      </item>
      <item>
         <title>O meu Prezi</title>
         <author>bia_vicentefaria</author>
         <link>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/143317070</link>
         <description><![CDATA[<div><a href="http://prezi.com/m3-lzofcbhpc/?utm_campaign=share&amp;utm_medium=copy">http://prezi.com/m3-lzofcbhpc/?utm_campaign=share&amp;utm_medium=copy</a></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-13 10:53:37 UTC</pubDate>
         <guid>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/143317070</guid>
      </item>
      <item>
         <title>Trabalho sobre a Teoria da Interatividade</title>
         <author>bia_vicentefaria</author>
         <link>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/147482315</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/154588088/d89e07710e15801275be19d1c7612717/Teoria_da_Interatividade_BEATRIZ_FARIA.pptx" />
         <pubDate>2017-01-17 10:03:09 UTC</pubDate>
         <guid>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/147482315</guid>
      </item>
      <item>
         <title>Projecto no sketchup</title>
         <author>bia_vicentefaria</author>
         <link>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/163233658</link>
         <description><![CDATA[<div>No programa do sketchup realizei uma piscina em 3D</div>]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/154588088/32f846665591807d039625d12cdfe9d0/piscina_4.png" />
         <pubDate>2017-03-28 18:35:53 UTC</pubDate>
         <guid>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/163233658</guid>
      </item>
      <item>
         <title></title>
         <author>bia_vicentefaria</author>
         <link>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/163238289</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/154588088/66685a4b072cfca16b7616f08963a6ae/piscina_2.png" />
         <pubDate>2017-03-28 18:49:59 UTC</pubDate>
         <guid>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/163238289</guid>
      </item>
      <item>
         <title></title>
         <author>bia_vicentefaria</author>
         <link>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/163238527</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/154588088/6bac84309b5117de71f2fb8d9fbe9edf/piscina_3.png" />
         <pubDate>2017-03-28 18:50:48 UTC</pubDate>
         <guid>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/163238527</guid>
      </item>
      <item>
         <title></title>
         <author>bia_vicentefaria</author>
         <link>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/163238621</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/154588088/8ad7a0fed089f026090d8694131123c6/piscina_1.png" />
         <pubDate>2017-03-28 18:51:07 UTC</pubDate>
         <guid>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/163238621</guid>
      </item>
      <item>
         <title>Power Point Apps For Good</title>
         <author>bia_vicentefaria</author>
         <link>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/175338772</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/154588088/455679e60fe4acf9f8d2545daebd6b6c/Nome_da_Escola___Nome_da_APP___Inscri__o_ERs_AfG16_17.pptx" />
         <pubDate>2017-06-06 07:52:08 UTC</pubDate>
         <guid>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/175338772</guid>
      </item>
      <item>
         <title>Link do video de apresentação da escola</title>
         <author>bia_vicentefaria</author>
         <link>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/175339648</link>
         <description><![CDATA[<div><a href="https://www.youtube.com/watch?v=Bc4IwxJ0TG0&amp;t=71s">https://www.youtube.com/watch?v=Bc4IwxJ0TG0&amp;t=71s</a></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-06-06 07:58:31 UTC</pubDate>
         <guid>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/175339648</guid>
      </item>
      <item>
         <title>Link da apresentação da aplicação </title>
         <author>bia_vicentefaria</author>
         <link>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/175339711</link>
         <description><![CDATA[<div><a href="https://www.youtube.com/watch?v=lQ_qbxddq78">https://www.youtube.com/watch?v=lQ_qbxddq78</a></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-06-06 07:59:01 UTC</pubDate>
         <guid>https://padlet.com/bia_vicentefaria/ioxbnsmpvb3e/wish/175339711</guid>
      </item>
   </channel>
</rss>
