<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Smart functions in C++ - Turma 7 by Wagner Cipriano</title>
      <link>https://padlet.com/wagnerbhbr/funcoes</link>
      <description>Let&#39;s go with functions guys.
Vamos aprender funções na prática.
Compartilhe funções com os colegas, use funções implementadas por outras pessoas, poste o resultado, imgs, links, etc.</description>
      <language>en-us</language>
      <pubDate>2020-10-01 16:59:01 UTC</pubDate>
      <lastBuildDate>2026-01-17 07:26:51 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet.net/icons/png/1f9e9.png</url>
      </image>
      <item>
         <title>funçao separa unidades milhares,centenas, dezenas e unidade</title>
         <author>walissonf32</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795666978</link>
         <description><![CDATA[<div>int separa(int valor, int &amp;M,int &amp;C,int &amp;D, int &amp;U)<br>{<br>    int A;<br>    M= valor/1000 ;<br>    A= valor%1000 ;<br>    C= A/100 ;<br>    D= (A%100)/10 ;<br>    U= (A%100)%10;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 17:34:21 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795666978</guid>
      </item>
      <item>
         <title>Função Resto de Divisão</title>
         <author>d2020022617</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795671990</link>
         <description><![CDATA[<div>int resto (int x, int y)<br>{<br>	return x % y;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 17:35:28 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795671990</guid>
      </item>
      <item>
         <title>Função que soma dois valores</title>
         <author>wagnerbhbr</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795672351</link>
         <description><![CDATA[<div>float soma(float a, float b) {<br>  float resultado;<br>  resultado = a + b;<br>  return resultado;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 17:35:32 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795672351</guid>
      </item>
      <item>
         <title>Função de multiplica dois valores</title>
         <author>joao2604</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795677332</link>
         <description><![CDATA[<div>float mult(float a, float b)<br>{<br>float resultado;<br>resultado = a * b;<br>return resultado;<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/765217252/33274a1c8b316ec0ed1a492b61c2ab55/1.PNG" />
         <pubDate>2020-10-01 17:36:38 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795677332</guid>
      </item>
      <item>
         <title>Função média</title>
         <author>d2019007879</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795679165</link>
         <description><![CDATA[<div><br>    float r;<br>{<br>    r=(a+b+c+d)/4;<br>}<br>    float n1, n2, n3, n4;<br>{<br>    media(n1,n2,n3,n4);<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 17:37:03 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795679165</guid>
      </item>
      <item>
         <title>Função que subtrai dois valores</title>
         <author>wagnerbhbr</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795681108</link>
         <description><![CDATA[<div>float subtr(float a, float b)  {<br>  return a - b;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 17:37:28 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795681108</guid>
      </item>
      <item>
         <title>Função que resulta o número ao cubo</title>
         <author>d2020020087</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795681271</link>
         <description><![CDATA[<div>int cubo ( int a)<br>{<br>int resultado;<br>resultado = n*n*n;<br>return resultado;<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 17:37:31 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795681271</guid>
      </item>
      <item>
         <title>Função que divide dois valores</title>
         <author>geraldocota15</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795682604</link>
         <description><![CDATA[<div>float divisao (float x, float y) {<br>    float res;<br>    res = x/y;<br>    return res;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 17:37:49 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795682604</guid>
      </item>
      <item>
         <title>Função que soma tres valores</title>
         <author>bochinirafael</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795683088</link>
         <description><![CDATA[<div>float soma(float a, float b, float )<br>{<br>float resultado;<br>resultado = a + b + c;<br>return resultado;<br>}</div>]]></description>
         <pubDate>2020-10-01 17:37:55 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795683088</guid>
      </item>
      <item>
         <title>Função que multiplica três valores </title>
         <author>d2019015692</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795685995</link>
         <description><![CDATA[<div>float multi (float a, float b, float c)<br>{<br>  float res;<br>  res = a*b*c;<br>  return multi;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 17:38:33 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795685995</guid>
      </item>
      <item>
         <title>Função que converte km/h para m/s</title>
         <author>d34390</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795688849</link>
         <description><![CDATA[<div>#define fator=3.6<br>float convert(float op, float valor)<br>{<br>      if (op==1)<br>         return valor*fator<br>      else<br>         return valor/fator<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 17:39:10 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795688849</guid>
      </item>
      <item>
         <title>Programa calculadora</title>
         <author>wagnerbhbr</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795707986</link>
         <description><![CDATA[<div>soma e subtração</div>]]></description>
         <enclosure url="https://pastebin.com/pwkYW8qy" />
         <pubDate>2020-10-01 17:43:14 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795707986</guid>
      </item>
      <item>
         <title>Função da área de um triângulo</title>
         <author>d2019004189</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795723556</link>
         <description><![CDATA[<div>int area ( int h)<br>{<br>float res;<br>res = (b*h)/2;<br>return res;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 17:46:26 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795723556</guid>
      </item>
      <item>
         <title>Calculadora que separa unidades de medida</title>
         <author>d2020008260</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795734279</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://pastebin.com/Mky4jmDP" />
         <pubDate>2020-10-01 17:48:41 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795734279</guid>
      </item>
      <item>
         <title>Função de Converter Real&lt;&gt;Dolar</title>
         <author>d2020005652</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795734641</link>
         <description><![CDATA[<div>float converte(unsigned short cv, float moeda){<br>float vd=5.65;<br>{<br>    if(cv==1)<br>        return moeda/vd;<br>    else<br>        return moeda*vd;<br>}</div>]]></description>
         <pubDate>2020-10-01 17:48:46 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795734641</guid>
      </item>
      <item>
         <title>função cúbica e resto de divisão</title>
         <author>d2020020087</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795750369</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://pastebin.com/Xy8xdhwY" />
         <pubDate>2020-10-01 17:51:48 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795750369</guid>
      </item>
      <item>
         <title>Função que calcula a ârea de um pentagono</title>
         <author>d2020020793</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795758685</link>
         <description><![CDATA[<div>int area (int a, int b)<br>{<br>float res;<br>res = 5*l*a<br>restur res;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 17:53:33 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795758685</guid>
      </item>
      <item>
         <title></title>
         <author>d2020022617</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795759230</link>
         <description><![CDATA[#include 
using namespace std;

main() {
	setlocale(LC_ALL, "Portuguese");
	float x, y, diferenca;
	cout &lt;&lt; "Entre com o primeiro número: ";
	cin &gt;&gt; x;
	cout &lt;&lt; "Entre com o segundo número: ";
	cin &gt;&gt; y;
	diferenca = subtr(x, y);
	cout &lt;&lt; endl &lt;&lt; x &lt;&lt; " - " &lt;&lt; y &lt;&lt; " = " &lt;&lt; diferenca &lt;&lt; endl;
}]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 17:53:40 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795759230</guid>
      </item>
      <item>
         <title>Programa Subtração</title>
         <author>d2020022617</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795760909</link>
         <description><![CDATA[<div>#include &lt;iostream&gt;<br>using namespace std;<br><br>main() {<br>	setlocale(LC_ALL, "Portuguese");<br>	float x, y, diferenca;<br>	cout &lt;&lt; "Entre com o primeiro número: ";<br>	cin &gt;&gt; x;<br>	cout &lt;&lt; "Entre com o segundo número: ";<br>	cin &gt;&gt; y;<br>	diferenca = subtr(x, y);<br>	cout &lt;&lt; endl &lt;&lt; x &lt;&lt; " - " &lt;&lt; y &lt;&lt; " = " &lt;&lt; diferenca &lt;&lt; endl;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 17:54:01 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795760909</guid>
      </item>
      <item>
         <title>Função que calcula os segundos contidos em horas, minutos e segundos.</title>
         <author>d2020008260</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795773982</link>
         <description><![CDATA[<div>void converte(int seg, int &amp;h, int&amp;m, int &amp;s)<br>{<br>    int aux;<br>    h=seg/3600;<br>    aux=seg%3600;<br>    m=aux/60;<br>    s=aux%60;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 17:56:47 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795773982</guid>
      </item>
      <item>
         <title>Função que divide 4 valores</title>
         <author>joao2604</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795777325</link>
         <description><![CDATA[<div>float divid(float a, float b, float c, float d)<br>{<br>float resultado;<br>resultado = a / b / c / d;<br>return resultado;<br>}<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/765217252/d6521b2c83c6cd5dc6ab7c24ac4a23e0/2.PNG" />
         <pubDate>2020-10-01 17:57:30 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795777325</guid>
      </item>
      <item>
         <title>programa sepador de unidades</title>
         <author>walissonf32</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795782550</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://pastebin.com/SP6kjq3k" />
         <pubDate>2020-10-01 17:58:35 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795782550</guid>
      </item>
      <item>
         <title>Função para calcular a hipotenusa de um triângulo retângulo a partir dos catetos</title>
         <author>d2020022617</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795789038</link>
         <description><![CDATA[<div>#include &lt;math.h&gt;<br>float pitagoras(float a, float b)<br>{<br>	return sqrt(pow(a, 2) + pow(b, 2));<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 17:59:47 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795789038</guid>
      </item>
      <item>
         <title>Regras</title>
         <author>wagnerbhbr</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795793258</link>
         <description><![CDATA[<div>Metas da atividade: critérios de avaliação<br><strong>a)</strong> Compartilhar pelo menos 2 funções com os colegas<br><strong>b)</strong> Curtir pelo menos 1 post<br><strong>c)</strong> Comentar pelo menos 1 post<br><strong>d)</strong> Implementar pelo menos um programa utilizando pelo menos uma função de algum colega, DISPONÍVEL aqui no mural<br><strong>e)</strong> Os posts deve seguir as cores: Azul para função, Verde para programas<br><strong>f)</strong> Os posts dos programas devem estar conectados às funções que o programa utiliza<br><strong>g)</strong> As funções e os programas devem estar corretos<br><strong>h)</strong> Os programas devem ser postados como links do post do pastebin ou prints da tela do Codeblocks<br><strong>g)</strong> <strong>NÃO</strong> repetir funções e programas<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/577797891/b3b2abc54bcbcb57ba5142bf1b7459e9/motivational_362a.jpg" />
         <pubDate>2020-10-01 18:00:41 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795793258</guid>
      </item>
      <item>
         <title>Função que multiplia 4 valores</title>
         <author>bochinirafael</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795824891</link>
         <description><![CDATA[<div>float multiplicação (float a, float b, float c, float d)<br>{<br>float resultado;<br>resultado = a * b * c * d;<br>return resultado;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 18:07:34 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795824891</guid>
      </item>
      <item>
         <title>Função que calcula o quadrado de um número</title>
         <author>juniagraciela</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795830513</link>
         <description><![CDATA[<pre>int quadrado(int n)
   {
      return n * n;
   }</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 18:08:47 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795830513</guid>
      </item>
      <item>
         <title>Raiz quadrada</title>
         <author>d2020020087</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795842307</link>
         <description><![CDATA[<div>float raiz (float x)<br>{<br>return sqrt(x);<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 18:11:23 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795842307</guid>
      </item>
      <item>
         <title>Programa Quadrado de um Número</title>
         <author>d2020022617</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795846875</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://pastebin.com/d0QZHYYT" />
         <pubDate>2020-10-01 18:12:24 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795846875</guid>
      </item>
      <item>
         <title>Função que calcula a área de quadrado</title>
         <author>d2020020793</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795851483</link>
         <description><![CDATA[<div>int area (int lado)<br>{<br>float res;<br>res = lado*lado<br>return res;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 18:13:23 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795851483</guid>
      </item>
      <item>
         <title>Programa que soma 3 valores e multiplia 2 valores</title>
         <author>bochinirafael</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795857245</link>
         <description><![CDATA[<pre>#include &lt;iostream&gt;
using namespace std;
float soma (float a, float b,float c)
{
    float resultado;
    resultado = a+b+c;
    return resultado;
}
float mult (float a, float b,float c, float d)
{
    float resultado;
    resultado = a*b*c*d;
    return resultado;
}
int main ()
{
    float n1, n2, n3, n4;
    cout &lt;&lt; "Insira tres numeros para somar: " &lt;&lt; endl;
    cin &gt;&gt; n1 &gt;&gt; n2 &gt;&gt; n3;
    cout &lt;&lt; n1 &lt;&lt; "+" &lt;&lt; n2 &lt;&lt; "+" &lt;&lt; n3 &lt;&lt;  " = " &lt;&lt; soma (n1, n2, n3) &lt;&lt; endl;
    cout &lt;&lt; "Insira quatro numeros para multiplicar: " &lt;&lt; endl;
    cin &gt;&gt; n1 &gt;&gt; n2 &gt;&gt; n3 &gt;&gt; n4;
    cout &lt;&lt; n1 &lt;&lt; "*" &lt;&lt; n2 &lt;&lt; "*" &lt;&lt; n3 &lt;&lt; "*" &lt;&lt; n4 &lt;&lt; " = " &lt;&lt; mult (n1, n2, n3, n4);

}</pre><div><br></div>]]></description>
         <pubDate>2020-10-01 18:14:40 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795857245</guid>
      </item>
      <item>
         <title>função media</title>
         <author>d2019007879</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795859766</link>
         <description><![CDATA[<div>https://pastebin.com/3BZtdNsF</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 18:15:16 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795859766</guid>
      </item>
      <item>
         <title></title>
         <author>d2019007879</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795865740</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://pastebin.com/3BZtdNsF" />
         <pubDate>2020-10-01 18:16:33 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795865740</guid>
      </item>
      <item>
         <title>programa para clcular e converter angulo e quadrante</title>
         <author>walissonf32</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795903362</link>
         <description><![CDATA[<div> int angulo;<br>    float rad;<br> cout&lt;&lt;"digite o angulo em graus ";<br> cin&gt;&gt;angulo;<br> rad = (3.14159265359*angulo) / 180;<br> calculeseno(rad);<br> calculequadrante1(rad);</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 18:24:58 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795903362</guid>
      </item>
      <item>
         <title>Programa soma 3 e divide 4</title>
         <author>joao2604</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795905155</link>
         <description><![CDATA[<div>float soma (float a, float b,float c)<br>{<br>    float resultado;<br>    resultado = a+b+c;<br>    return resultado;<br>}<br>float divid (float a, float b,float c, float d)<br>{<br>    float resultado;<br>    resultado = a/b/c/d;<br>    return resultado;<br>}<br>int main ()<br>{<br>    float n1, n2, n3, n4;<br>    cout &lt;&lt; "Insira tres numeros para somar: " &lt;&lt; endl;<br>    cin &gt;&gt; n1 &gt;&gt; n2 &gt;&gt; n3;<br>    cout &lt;&lt; n1 &lt;&lt; "+" &lt;&lt; n2 &lt;&lt; "+" &lt;&lt; n3 &lt;&lt;  " = " &lt;&lt; soma (n1, n2, n3) &lt;&lt; endl;<br>    cout &lt;&lt; "Insira quatro numeros para multiplicar: " &lt;&lt; endl;<br>    cin &gt;&gt; n1 &gt;&gt; n2 &gt;&gt; n3 &gt;&gt; n4;<br>    cout &lt;&lt; n1 &lt;&lt; "/" &lt;&lt; n2 &lt;&lt; "/" &lt;&lt; n3 &lt;&lt; "/" &lt;&lt; n4 &lt;&lt; " = " &lt;&lt; divid (n1, n2, n3, n4);<br><br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/765217252/9a3b665e5cc1acadb596712666a6fce0/3.PNG" />
         <pubDate>2020-10-01 18:25:22 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795905155</guid>
      </item>
      <item>
         <title>calcula e converte</title>
         <author>walissonf32</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795908211</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://pastebin.com/tCZPDW0M" />
         <pubDate>2020-10-01 18:26:04 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795908211</guid>
      </item>
      <item>
         <title>Função que calcula altura de um triângulo</title>
         <author>thalita61</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795913261</link>
         <description><![CDATA[<div>float alt_triangulo(float l){<br>float altura;<br>altura = (l* sqrt(3))/2;<br>return altura;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 18:27:13 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795913261</guid>
      </item>
      <item>
         <title>função area de um trapezio</title>
         <author>d2019007879</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795928883</link>
         <description><![CDATA[<div>float res;<br>{<br>res=((a+b)*h)/2<br>}<br>float n1, n2, n3;<br>{<br>area(n1,n2,n3);<br>}<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/765214597/0d85d2bcafe9355448e4253693f531b0/atividade_prog.PNG" />
         <pubDate>2020-10-01 18:31:03 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795928883</guid>
      </item>
      <item>
         <title>Função para determinar o perímetro de um triângulo. </title>
         <author>d2019015692</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795940503</link>
         <description><![CDATA[<div>float peri_triangulo(float x, float y, float z)<br>{<br>  float perimetro;<br>  perimetro = x+y+z;<br>  return perimetro;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 18:33:52 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795940503</guid>
      </item>
      <item>
         <title>Função que calcula delta</title>
         <author>thalita61</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795980386</link>
         <description><![CDATA[<div>float delta(int a, int b, int c){<br>int delta;<br>delta = pow(b,2)- 4* a * c;<br>return delta;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 18:43:42 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795980386</guid>
      </item>
      <item>
         <title>Programa número ao quadrado</title>
         <author>d2019004189</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/795999685</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://pastebin.com/YHWiinKs" />
         <pubDate>2020-10-01 18:48:36 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/795999685</guid>
      </item>
      <item>
         <title></title>
         <author>d2019004189</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796052305</link>
         <description><![CDATA[int losango(int d1, int D2)
{
    float resultado;
    resultado=(d1*D2)/2;
    return resultado;
}
]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 19:02:15 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796052305</guid>
      </item>
      <item>
         <title>Função que eleva um número à uma potência determinada</title>
         <author>d34390</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796107995</link>
         <description><![CDATA[<div>#include &lt;math.h&gt;<br>int potencia (int a, int b)<br>{<br>     int res;<br>     res = pow (a,b);<br>     return res;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 19:17:08 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796107995</guid>
      </item>
      <item>
         <title>media de aluno sem valores negativos ou maiores que 10</title>
         <author>walissonf32</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796118856</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://pastebin.com/7nL90aJu" />
         <pubDate>2020-10-01 19:20:19 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796118856</guid>
      </item>
      <item>
         <title>Programa calculador de Delta</title>
         <author>d34390</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796147699</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/765215173/94ce2c31227a3ec486712ef25295d5c5/Atividade_Avaliativa.png" />
         <pubDate>2020-10-01 19:30:01 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796147699</guid>
      </item>
      <item>
         <title>Programa ârea de um losangulo</title>
         <author>d2020020793</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796162420</link>
         <description><![CDATA[<div>#include &lt;iostream&gt;<br>using namespace std;<br>float losango(float d1,float D2)<br>{<br>    float resultado;<br>    resultado=(d1*D2)/2;<br>    return resultado;<br>}<br>int main()<br>{<br>    float resultado, d1, D2;<br><br>    cout &lt;&lt; "Coloque aqui os 2 lados: ";<br>    cin &gt;&gt; d1 &gt;&gt; D2;<br><br>    cout &lt;&lt; "O resultado e: "&lt;&lt; d1 &lt;&lt; "*" &lt;&lt; D2 &lt;&lt; "/2" &lt;&lt; " = " &lt;&lt; losango (d1,D2);<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 19:34:29 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796162420</guid>
      </item>
      <item>
         <title>Função Volume do paralelepípedo </title>
         <author>geraldocota15</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796176090</link>
         <description><![CDATA[<div>float volume (float x, float y, float z) {<br>    float res;<br>    res = x*y*z;<br>    return res;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 19:39:02 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796176090</guid>
      </item>
      <item>
         <title>Programa que recebe três medidas e calcula o volume de um retângulo.</title>
         <author>thalita61</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796347419</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/765220349/02df17c46af8d5327233b11bfd26bed6/atividade_1.png" />
         <pubDate>2020-10-01 20:44:33 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796347419</guid>
      </item>
      <item>
         <title>Programa para dividir quantidade de frutas por uma certa quantidade de pessoas.</title>
         <author>d2020005652</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796410137</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://pastebin.com/4jtbigP9" />
         <pubDate>2020-10-01 21:14:10 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796410137</guid>
      </item>
      <item>
         <title>Programa que calcula o Lucro </title>
         <author>d2020005652</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796447055</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://pastebin.com/3Deu7H87" />
         <pubDate>2020-10-01 21:35:17 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796447055</guid>
      </item>
      <item>
         <title>Função Volume de esfera</title>
         <author>d2020005652</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796452997</link>
         <description><![CDATA[<div>float volume(float r)<br>{<br>float pi=3.14;<br>return (4*pi/3) * (pow(r,3));<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-01 21:38:55 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796452997</guid>
      </item>
      <item>
         <title>Programa que exibe a altura de um triângulo equilátero </title>
         <author>geraldocota15</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796595191</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/765214655/d57d163507d494ec0228a5998a1b6cc7/image.png" />
         <pubDate>2020-10-01 23:19:07 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796595191</guid>
      </item>
      <item>
         <title>Função que calcula a área do retângulo</title>
         <author>geraldocota15</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796660479</link>
         <description><![CDATA[<div>float area_retangulo ( float b, float c) {<br>    float area;<br>    area= b*c;<br>    return area;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-02 00:11:16 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796660479</guid>
      </item>
      <item>
         <title>Programa que recebe comprimento e altura de uma paralelepípedo e calcula a área do mesmo.</title>
         <author>d2019015692</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796696178</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/765215181/ba2a0ee52bea3842db8cd2de5878de91/Capturar.PNG" />
         <pubDate>2020-10-02 00:41:37 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796696178</guid>
      </item>
      <item>
         <title>Função multiplica valores recebidos nos parâmetros.</title>
         <author>sarahkemileoliveira</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796715925</link>
         <description><![CDATA[<div>resultado = multiplica(V1,V2);<br>  printf("Resultado = %d\n", resultado);<br><br>  getch();<br>  return 0;<br>}</div>]]></description>
         <pubDate>2020-10-02 00:58:37 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796715925</guid>
      </item>
      <item>
         <title>Função que calcula valor absoluto de um número.</title>
         <author>sarahkemileoliveira</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796725804</link>
         <description><![CDATA[<div><br>  int abs(int x)<br>  {<br>     if (x &lt; 0)<br>        x = -x;<br><br>     return x;<br>  }</div>]]></description>
         <pubDate>2020-10-02 01:07:08 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796725804</guid>
      </item>
      <item>
         <title>Função que calcula a área de quadrado</title>
         <author>sarahkemileoliveira</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796743521</link>
         <description><![CDATA[<div>int area (int lado)<br>{<br>float res;<br>res = lado*lado<br>return res;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-02 01:23:29 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796743521</guid>
      </item>
      <item>
         <title>Função que calcula a área de quadrado</title>
         <author>sarahkemileoliveira</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796744177</link>
         <description><![CDATA[<div>int area (int lado)<br>{<br>float res;<br>res = lado*lado<br>return res;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-02 01:24:09 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796744177</guid>
      </item>
      <item>
         <title>Função que calcula o perímetro de um quadrado</title>
         <author>laissouza4</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796755222</link>
         <description><![CDATA[<div>float soma (float W, float X,float Y,float Z);<br>{<br>    resultado: W+X+Y+Z;<br>    return resultado;<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-02 01:34:35 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796755222</guid>
      </item>
      <item>
         <title>Função que multiplica dois fatores </title>
         <author>lucamilaclo</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796757428</link>
         <description><![CDATA[int main (int N1, int N2)
{
  int resultado;
  resultado = N1 * N2;
  return(resultado);
}]]></description>
         <enclosure url="" />
         <pubDate>2020-10-02 01:36:38 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796757428</guid>
      </item>
      <item>
         <title>Função que calcula a potência de um número inteiro</title>
         <author>laissouza4</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796765026</link>
         <description><![CDATA[<div>int potencia(int base, int expoente){<br> if(expoente == 0)<br> return 1;<br> else<br> return (base * potencia(base, expoente-1));<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-02 01:43:18 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796765026</guid>
      </item>
      <item>
         <title>função que converte uma temperatura de Farenheit para Celsius</title>
         <author>juniagraciela</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796778257</link>
         <description><![CDATA[<pre>float fahr_para_cels(float f)
   {
       return 5.0 / 9.0 * (f - 32.0);
   }</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-02 01:56:15 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796778257</guid>
      </item>
      <item>
         <title>Função que calcula idade</title>
         <author>joao292a</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796782055</link>
         <description><![CDATA[<div>int soma(int AnoAtual, int AnoNasci,int idade  )<br>{<br>int resultado;<br>resultado = AnoAtual-AnoNasci;<br>return resultado;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-02 02:00:13 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796782055</guid>
      </item>
      <item>
         <title>função que calcula potencia</title>
         <author>joao292a</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796794177</link>
         <description><![CDATA[<div>int potencia (int base, int exp) {<br>    float res;<br>    res = pow(base,exp);<br>    return res;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-02 02:13:07 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796794177</guid>
      </item>
      <item>
         <title>Função Volume de esfera</title>
         <author>juniagraciela</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796804385</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://pastebin.com/MU6rYs8C" />
         <pubDate>2020-10-02 02:23:33 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796804385</guid>
      </item>
      <item>
         <title>Função que calcula raiz quadrada de um número</title>
         <author>lucamilaclo</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796810672</link>
         <description><![CDATA[<div>int main()<br>{<br>    double x;<br>    cin &gt;&gt; x;<br>    cout &lt;&lt; sqrt(x) &lt;&lt; endl;<br>    return 0;<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-02 02:30:34 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796810672</guid>
      </item>
      <item>
         <title>Programa divide valores</title>
         <author>joao292a</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796811523</link>
         <description><![CDATA[<div>https://pastebin.com/k1pKP1Jh</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-02 02:31:34 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796811523</guid>
      </item>
      <item>
         <title>Programa que exibe a área de um retângulo equilátero</title>
         <author>sarahkemileoliveira</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796832888</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/765833596/a346e8ade96ac902d3674aaa77dd4197/Atividade_avaliativa.png" />
         <pubDate>2020-10-02 02:54:45 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796832888</guid>
      </item>
      <item>
         <title>Programa que calcula potencia</title>
         <author>lucamilaclo</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796836207</link>
         <description><![CDATA[<pre>#include &lt;stdio.h&gt;
#include &lt;stdlib.h&gt;

int potencia(int i,int j);
int main(){
int i,j,result;
printf("digite A base: ");
scanf("%d",&amp;i);
printf("digite o expoente ");
scanf("%d", &amp;j);
if(j==0)result=1;
if(j!=0)result=potencia(i,j);
printf("\n%d elevado a %d:%d\n\n",i,j,result);
system("pause");
return 0;
}
int potencia(int i,int j){
int result=1;
do{
result*=i;
j--;
}
while(j&gt;0);
return result;
}</pre>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/765870513/891a5f37f13649256ae857b1dd7b18cf/prit.jpg" />
         <pubDate>2020-10-02 02:58:31 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796836207</guid>
      </item>
      <item>
         <title>Programa que calcula a área de um quadrado</title>
         <author>laissouza4</author>
         <link>https://padlet.com/wagnerbhbr/funcoes/wish/796859280</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/765220600/a1b3f0964a8552cd4107c72939170717/Programa__.jpg" />
         <pubDate>2020-10-02 03:24:45 UTC</pubDate>
         <guid>https://padlet.com/wagnerbhbr/funcoes/wish/796859280</guid>
      </item>
   </channel>
</rss>
