<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>XXXX by fdgerf</title>
      <link>https://padlet.com/16521685/30112016</link>
      <description>Made with joy</description>
      <language>en-us</language>
      <pubDate>2016-11-30 08:09:04 UTC</pubDate>
      <lastBuildDate>2017-05-17 12:05:14 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>153</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/140729548</link>
         <description><![CDATA[<div>int channhonhat(int a[], int n)<br><br>{<br><br>	int chanmin = chandau(a, n);<br><br>	if (chanmin == -1) return 0;<br><br>	for (int i = 0; i &lt; n; i++)<br><br>	{<br><br>		if (a[i] % 2 == 0 &amp;&amp; a[i] &lt; chanmin)<br><br>		{<br><br>			a[i] = chanmin;<br><br>		}<br><br>	}<br><br>	return chanmin;<br><br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-11-30 08:14:24 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/140729548</guid>
      </item>
      <item>
         <title>152</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/140839741</link>
         <description><![CDATA[<div>int hoanthiennhonhat(int *a, int n)<br><br>{<br><br>	int hoanthienmin = hoanthiendau(a, n);<br><br>	if (hoanthienmin == -1) return 0;<br><br>	for (int i = 0; i &lt; n; i++)<br><br>	{<br><br>		if (kiemtrahoanthien(a[i])==1 &amp;&amp; a[i]&lt;hoanthienmin)<br><br>		{<br><br>			a[i] = hoanthienmin;<br><br>		}<br><br>	}<br><br>	return hoanthienmin;<br><br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-11-30 15:27:35 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/140839741</guid>
      </item>
      <item>
         <title>156</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141007770</link>
         <description><![CDATA[<div>void TaoMang(float a[], int n, float b[], int x)<br><br>{<br><br>	for (int i = 0; i &lt; n; i++)<br><br>	{<br><br>		b[i] = abs(x - a[i]);<br><br>	}<br><br>}<br><br><br><br>float TimMin(float b[], int n)<br><br>{<br><br>	float Min = b[0];<br><br>	for (int i = 1; i &lt; n; i++)<br><br>	{<br><br>		if (b[i] &lt; Min)<br><br>		{<br><br>			Min = b[i];<br><br>		}<br><br>	}<br><br>	return Min;<br><br>}<br><br>void XuatKetQua(float a[], float b[], int n)<br><br>{<br><br>	std::cout&lt;&lt;"\nGia tri trong mang gan gia tri x nhat la: ";<br><br>	float Min = TimMin(b, n);<br><br>	for (int i = 0; i &lt; n; i++)<br><br>	{<br><br>		if (b[i] == Min)<br><br>		{<br><br>			std::cout&lt;&lt;a[i]&lt;&lt;std::endl;<br><br>		}<br><br>	}<br><br>}<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 03:49:37 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141007770</guid>
      </item>
      <item>
         <title>157</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141008045</link>
         <description><![CDATA[<div>void timdoan(float a[], int n)
<br>{
<br>	float max = a[0];
<br>	float min = a[0];
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		max = (a[i] &gt; max) ? a[i] : max;
<br>		min = (a[i] &lt; min) ? a[i] : min;
<br>	}
<br>	std::cout&lt;&lt;"\n["&lt;&lt;min&lt;&lt;","&lt;&lt;max&lt;&lt;" ] la doan chua cac gia tri trong mang\n";
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 03:54:08 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141008045</guid>
      </item>
      <item>
         <title>267</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141008050</link>
         <description><![CDATA[<div>void nhap (int *a, int &amp;n)
<br>{
<br>	do
<br>	{
<br>		cout&lt;&lt;"\nNhap so phan tu: ";
<br>		cin&lt;&lt;n;<br>		if(n &lt;= 0 || n &gt; MAX)
<br>		{
<br>			cout&lt;&lt;"\nnhap lai";<br>
                        cin&gt;&gt;n;<br>		}
<br>	}while(n &lt;= 0 || n &gt; MAX);
<br>	for(int i = 0; i &lt; n; i++)
<br>	{
<br>		cout&lt;&lt;"\na["&lt;&lt;i&lt;&lt;]=;<br>		cin&gt;&gt;a[i];<br>		for(int j = 0; j &lt; i; j++)
<br>		{
<br>			if(a[i] &gt; a[j])
<br>			{
<br>				int temp = a[i];
<br>				for(int k = i; k &gt; j; k--)
<br>				{
<br>					a[k] = a[k - 1];
<br>				}
<br>				a[j] = temp;
<br>			}
<br>		}
<br>	}
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 03:54:12 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141008050</guid>
      </item>
      <item>
         <title>158</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141008241</link>
         <description><![CDATA[<div>float timx(float a[], int n)
<br>{
<br>	float x = a[0];
<br>	for (int i = 1; i &lt; n; i++)
<br>	{
<br>		x = (x &gt;(fabs)(a[i])) ? x : (fabs)(a[i]);
<br>	}
<br>	return x;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 03:56:56 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141008241</guid>
      </item>
      <item>
         <title>159</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141008425</link>
         <description><![CDATA[<div>float dautien(float a[], int n)
<br>{
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (a[i] &gt; 2003)
<br>		{
<br>			return a[i];
<br>		}
<br>	}
<br>	return 0;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 03:59:53 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141008425</guid>
      </item>
      <item>
         <title>160</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141008597</link>
         <description><![CDATA[<div>float TimAmCuoiCung(float a[], int n)
<br>{
<br>	for (int i = n - 1; i &gt;= 0; i--)
<br>	{
<br>		if (a[i] &gt; -1 &amp;&amp; a[i] &lt; 0)
<br>		{
<br>			return a[i];
<br>		}
<br>	}
<br>	return 0;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 04:02:49 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141008597</guid>
      </item>
      <item>
         <title>161</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141008795</link>
         <description><![CDATA[<div>int dautientrongdoan(int a[], int n, int x, int y)
<br>{
<br>	int dem = 0;
<br>	int i;
<br>	for (i = 0; i &lt; n; i++)
<br>	{
<br>		if (a[i] &gt;= x &amp;&amp; a[i] &lt;= y)
<br>		{
<br>			dem++;
<br>			break;
<br>		}
<br>	}
<br>	if (dem == 0)
<br>	{
<br>		return x;
<br>	}
<br>	return a[i];
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 04:05:58 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141008795</guid>
      </item>
      <item>
         <title>176</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141008903</link>
         <description><![CDATA[<div>void LietKeCacSoAm(float a[], int n)
<br>{
<br>	std::cout&lt;&lt;"\nCac so am trong mang la: ";
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (a[i] &lt; 0)
<br>		{
<br>			std::cout &lt;&lt; a[i] &lt;&lt; " ";
<br>		}
<br>	}
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 04:08:46 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141008903</guid>
      </item>
      <item>
         <title>177</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141009073</link>
         <description><![CDATA[<div>void LietKeTrongDoanXY(float a[], int n, float x, float y)
<br>{
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (x &lt;= a[i] &amp;&amp; a[i] &lt;= y)
<br>		{
<br>			std::cout&lt;&lt;a[i]&lt;&lt;" ";
<br>		}
<br>	}
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 04:11:44 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141009073</guid>
      </item>
      <item>
         <title>178</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141009159</link>
         <description><![CDATA[<div>void LietKeChanTrongDoanXY(int a[], int n, int x, int y)
<br>{
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (a[i] % 2 == 0 &amp;&amp; x &lt;= a[i] &amp;&amp; a[i] &lt;= y)
<br>		{
<br>			std::cout&lt;&lt; a[i]&lt;&lt;" ";
<br>		}
<br>	}
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 04:13:16 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141009159</guid>
      </item>
      <item>
         <title>179</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141009354</link>
         <description><![CDATA[<div>void LietKe(int a[], int n)
<br>{
<br>	int flag = 0;
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (a[i] &gt; abs(a[i + 1]))
<br>		{
<br>			flag = 1;
<br>			std::cout &lt;&lt; a[i] &lt;&lt; " ";
<br>		}
<br>	}
<br>	if (flag == 0)
<br>		std::cout&lt;&lt;"Mang ko co gia tri do";
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 04:16:22 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141009354</guid>
      </item>
      <item>
         <title>180</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141009432</link>
         <description><![CDATA[<div>void LietKe(int a[], int n)
<br>{
<br>	int flag = 0;
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (a[i] &gt; abs(a[i - 1]) &amp;&amp; a[i] &lt; abs(a[i + 1]))
<br>		{
<br>			flag = 1;
<br>			std::cout &lt;&lt; a[i] &lt;&lt; " ";
<br>		}
<br>	}
<br>	if (flag == 0)
<br>		std::cout&lt;&lt;"Mang ko co gia tri do";
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 04:18:00 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141009432</guid>
      </item>
      <item>
         <title>200</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141009477</link>
         <description><![CDATA[<pre><strong>int</strong> TinhTong(<strong>int</strong> a[], <strong>int</strong> n)
{
	<strong>int</strong> tong = 0;
	<strong>for</strong>(<strong>int</strong> i = 0; i &lt; n; i++)
	{
		tong += a[i];
	}
	<strong>return</strong> tong;
}</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 04:19:06 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141009477</guid>
      </item>
      <item>
         <title>201</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141009541</link>
         <description><![CDATA[<pre><strong>
float</strong> tinhtongcacphanduong(<strong>float</strong> a[], <strong>int</strong> n)
{
	<strong>int</strong> Tong = 0;
	<strong>for</strong>(<strong>int</strong> i = 0; i &lt; n; i++)
	{
		<strong>if</strong>(a[i] &gt; 0)
		{
			Tong += a[i];
		}
	}
	<strong>return</strong> Tong;
}</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 04:20:05 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141009541</guid>
      </item>
      <item>
         <title>202</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141009678</link>
         <description><![CDATA[<div>
<br>int TimChuSoDauLe(int n)
<br>{
<br>	int donvi;
<br>	n = abs(n);
<br>	while (n &gt;= 10)
<br>	{
<br>		donvi = n % 10;
<br>		n /= 10;
<br>	}
<br>	if (n % 2 == 0)
<br>	{
<br>		return 0;
<br>	}
<br>	return 1;
<br>}
<br>
<br>int TinhTongCacSoChuSoDauLe(int a[], int n)
<br>{
<br>	int Tong = 0;
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (TimChuSoDauLe(a[i]) == 1)
<br>		{
<br>			Tong += a[i];
<br>		}
<br>	}
<br>	return Tong;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 04:22:23 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141009678</guid>
      </item>
      <item>
         <title>203</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141009860</link>
         <description><![CDATA[<div>
<br>int TimSoHangChuc5(int n)
<br>{
<br>	n = abs(n);
<br>	n = n / 10;
<br>	int hangchuc = n % 10;
<br>	if (hangchuc == 5)
<br>	{
<br>		return 1;
<br>	}
<br>	return 0;
<br>}
<br>
<br>int TinhTongSoHangChuc5(int a[], int n)
<br>{
<br>	int Tong = 0;
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (TimSoHangChuc5(a[i]) == 1)
<br>		{
<br>			Tong += a[i];
<br>		}
<br>	}
<br>	return Tong;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 04:25:29 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141009860</guid>
      </item>
      <item>
         <title>204</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141010741</link>
         <description><![CDATA[<div>int tongcacphantulonhondungtruocno(int a[], int n)
<br>{
<br>	int Tong = 0;
<br>	for (int i = 1; i &lt; n; i++)
<br>	{
<br>		if (a[i] &gt; a[i - 1])
<br>		{
<br>			Tong += a[i];
<br>		}
<br>	}
<br>	return Tong;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 04:41:32 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141010741</guid>
      </item>
      <item>
         <title>205</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141012230</link>
         <description><![CDATA[<pre><strong>int</strong> TinhTongCacPhanTuLonHonTriTuyetDoiCuaPhanTuDungLienSauNo(<strong>int</strong> a[], <strong>int</strong> n)
{
	<strong>int</strong> Tong = 0;
	<strong>for</strong>(<strong>int</strong> i = 0; i &lt; n; i++)
	{
		<strong>if</strong>(a[i] &gt; abs(a[i + 1]))
		{
			Tong += a[i];
		}
	}
	<strong>return</strong> Tong;
}</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 05:05:34 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141012230</guid>
      </item>
      <item>
         <title>206</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141012287</link>
         <description><![CDATA[<div>int TinhTongCacPhanTuLonHonPhanTuXungQuanh(int a[], int n)
<br>{
<br>	int Tong = 0;
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (i == 0 &amp;&amp; a[i] &gt; a[i + 1])
<br>		{
<br>			Tong += a[i];
<br>		}
<br>		else if (i != 0 &amp;&amp; a[i] &gt; a[i + 1] &amp;&amp; a[i] &gt; a[i - 1]) 
<br>		{
<br>			Tong += a[i];
<br>		}
<br>		else if (i == n - 1 &amp;&amp; a[i] &gt; a[i - 1]) 
<br>		{
<br>			Tong += a[i];
<br>		}
<br>	}
<br>	return Tong;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 05:06:34 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141012287</guid>
      </item>
      <item>
         <title>207 </title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141012391</link>
         <description><![CDATA[<div>
<strong>int</strong> TinhTongCacPhanTuCucTri(<strong>int</strong> a[], <strong>int</strong> n)
{
	<strong>int</strong> Tong = 0;
	<strong>for</strong>(<strong>int</strong> i = 0; i &lt; n; i++)
	{
		<strong>if</strong>(i == 0 &amp;&amp; a[i] != a[i + 1]) <br><br>		{<br>			Tong += a[i];<br>		}<br>		<strong>else</strong> <strong>if</strong>(i == n - 1 &amp;&amp; a[i] != a[i - 1])  <br>		{<br>			Tong += a[i];<br>		}<br>		<strong>else</strong> <strong>if</strong>((a[i] &lt; a[i + 1] &amp;&amp; a[i] &lt; a[i - 1]) || (a[i] &gt; a[i + 1] &amp;&amp; a[i] &gt; a[i - 1]))
		{
			Tong += a[i];
		}
	}
	<strong>return</strong> Tong;
}</div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 05:08:39 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141012391</guid>
      </item>
      <item>
         <title>208</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141012446</link>
         <description><![CDATA[<pre><strong>int</strong> KiemTraChinhPhuong(<strong>int</strong> n)
{
	<strong>return</strong> sqrt((<strong>float</strong>)n) == (<strong>int</strong>)sqrt((<strong>float</strong>)n);
}

<strong>int</strong> TinhTongCacSoChinhPhuong(<strong>int</strong> a[], <strong>int</strong> n)
{
	<strong>int</strong> Tong = 0;
	<strong>for</strong>(<strong>int</strong> i = 0; i &lt; n; i++)
	{
		<strong>if</strong>(KiemTraChinhPhuong(a[i]) == 1)
		{
			Tong += a[i];
		}
	}
	<strong>return</strong> Tong;
}</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 05:09:31 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141012446</guid>
      </item>
      <item>
         <title>209</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141012529</link>
         <description><![CDATA[<pre><strong>int</strong> KiemTraDoiXung(<strong>int</strong> n)
{
	<strong>int</strong> donvi, tam = n;
	<strong>int</strong> sodaonguoc = 0;
	<strong>while</strong>(tam != 0)
	{
		donvi = tam % 10;
		sodaonguoc = sodaonguoc * 10 + donvi;
		tam /= 10;
	}
	<strong>if</strong>(sodaonguoc == n)
	{
		<strong>return</strong> 1;
	}
	<strong>return</strong> 0;
}

<strong>int</strong> TongCacSoDoiXung(<strong>int</strong> a[], <strong>int</strong> n)
{
	<strong>int</strong> Tong = 0;
	<strong>for</strong>(<strong>int</strong> i = 0; i &lt; n; i++)
	{
		<strong>if</strong>(KiemTraDoiXung(a[i]) == 1)
		{
			Tong += a[i];
		}
	}
	<strong>return</strong> Tong;
}</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 05:10:56 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141012529</guid>
      </item>
      <item>
         <title>210</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141012564</link>
         <description><![CDATA[<pre><strong>
int</strong> KiemTraChuSoDauChan(<strong>int</strong> n)
{
	<strong>while</strong>(n &gt;= 10)
	{
		n /= 10;
	}
	<strong>if</strong>(n % 2 == 0)
	{
		<strong>return</strong> 1;
	}
	<strong>return</strong> 0;
}

<strong>int</strong> TinhTongCacSoChuSoDauChan(<strong>int</strong> a[], <strong>int</strong> n)
{
	<strong>int</strong> Tong = 0;
	<strong>for</strong>(<strong>int</strong> i = 0; i &lt; n; i++)
	{
		<strong>if</strong>(KiemTraChuSoDauChan(a[i]) == 1)
		{
			Tong += a[i];
		}
	}
	<strong>return</strong> Tong;
}</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 05:11:43 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141012564</guid>
      </item>
      <item>
         <title>211</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141012644</link>
         <description><![CDATA[<div><br>float TinhTBCongNguyenTo(int a[], int n)<br><br>{<br><br>	int Tong = 0;<br><br>	float dem = 0;<br><br>	for (int i = 0; i &lt; n; i++)<br><br>	{<br><br>		if (Ngto(a[i]) == 1)<br><br>		{<br><br>			Tong += a[i];<br><br>			dem++;<br><br>		}<br><br>	}<br><br>	if (dem == 0)<br><br>	{<br><br>		std::cout&lt;&lt;"\nMang khong co so nguyen to";<br><br>		return 0;<br><br>	}<br><br>	return Tong / dem;<br><br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 05:12:58 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141012644</guid>
      </item>
      <item>
         <title>269</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141030495</link>
         <description><![CDATA[<pre><strong>void</strong> chẽ_x_vao_mang_tang(<strong>int</strong> a[], <strong>int</strong> &amp;n, <strong>int</strong> x)
{
	<strong>int</strong> i, j;
	<strong>for</strong>(i = 0; i &lt; n; i++)
	{
		<strong>if</strong>(x &lt; a[i])
		{
			<strong>int</strong> temp = x;
			<strong>for</strong>(j = n; j &gt; i; j--)
			{
				a[j] = a[j - 1];
			}
			a[i] = temp;
		}
	}
	n++;
}</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 08:21:55 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141030495</guid>
      </item>
      <item>
         <title>271</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141030996</link>
         <description><![CDATA[<div>void xoaphantu(int *a, int &amp;n, int vitrixoa) <br>{ <br>    do{ <br>cout&lt;&lt;"\nNhap vi tri xoa: "; <br> cin&gt;&gt;n;<br> <br> if(vitrixoa &lt; 0 || vitrixoa &gt;= n) <br> { <br> cout&lt;&lt;"nhap lai";<br>cin&gt;&gt;vi <br> } <br> }while(vitrixoa &lt; 0 || vitrixoa &gt;= n); <br> for(int i = ViTriXoa; i &lt; n; i++) <br> { <br> a[i] = a[i + 1]; <br> } <br> n- -; <br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 08:25:23 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141030996</guid>
      </item>
      <item>
         <title>273</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141032205</link>
         <description><![CDATA[<pre><strong>void</strong> xoacacsoam(<strong>int</strong> a, <strong>int</strong> &amp;n)
{
	<strong>for</strong>(<strong>int</strong> i = 0; i &lt; n; i++)
	{
		<strong>if</strong>(a[i] &lt; 0)
		{
			xoaphantu(a, n, i);
			i--;
		}
	}
}</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 08:33:12 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141032205</guid>
      </item>
      <item>
         <title>274</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141032454</link>
         <description><![CDATA[<pre><strong>void</strong> xoacasochan(<strong>int</strong> a[], <strong>int</strong> &amp;n)
{
	<strong>for</strong>(<strong>int</strong> i = 0; i &lt; n; i++)
	{
		<strong>if</strong>(a[i] % 2 == 0)
		{
			xoaphantu(a, n, i);
			i--;
		}
	}
}</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 08:34:47 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141032454</guid>
      </item>
      <item>
         <title>278</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141033192</link>
         <description><![CDATA[<pre><strong>void</strong> xoacacphantutrungnhau(<strong>int</strong> a, <strong>int</strong> &amp;n)
{
	<strong>for</strong>(<strong>int</strong> i = 0; i &lt; n; i++)
	{
		<strong>for</strong>(<strong>int</strong> j = i + 1; j &lt; n; j++)
		{
			<strong>if</strong>(a[i] == a[j])
			{
				xoaphantu(a, n, j);
				j--;
			}
		}
	}
}</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 08:38:48 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141033192</guid>
      </item>
      <item>
         <title>266</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141034318</link>
         <description><![CDATA[<div>void themphantu(int *a, int &amp;n, int vitri, int k)
<br>{
<br>    do
<br>    {
<br>        cout&lt;&lt;"nhap vi tri can them"&lt;&lt;o&lt;&lt;"--&gt;"&lt;&lt;n;
<br>        cin&gt;&gt;n;
<br>        if (vitri &lt;0|| vitri&gt;n)
<br>        cout&lt;&lt;"nhap lai";
<br>        cin&gt;&gt;n;
<br>    }while (vitri&lt;0 || vitri&gt;n)
<br>    cout&lt;&lt;"nhap vi tri va k";
<br>    cin&gt;&gt;vitri&gt;&gt;k;
<br>    n++
<br>    for (int i=n;i&gt;vitri;i--)
<br>    a[i]=a[i-1];
<br>    a[vitri]=k;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 08:44:53 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141034318</guid>
      </item>
      <item>
         <title>255</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141034989</link>
         <description><![CDATA[<div>void hoanvi(int &amp;a, int &amp;b)<br><br>{<br><br>&nbsp; &nbsp; int temp=a;<br><br>&nbsp; &nbsp; a=b;<br><br>&nbsp; &nbsp; b=temp;<br><br>}<br><br>void giamdan(int *a; int &amp;n)<br><br>{<br><br>&nbsp; &nbsp; for(int i=0;i&lt;n;i++)<br><br>&nbsp; &nbsp; &nbsp; &nbsp; for (int j=i+1;j&lt;n;j++)<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (a[i]&lt;a[j]);<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; hoanvi(a[i],a[j])<br><br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 08:48:36 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141034989</guid>
      </item>
      <item>
         <title>256</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141035667</link>
         <description><![CDATA[<div>void tangdan(int *a; int &amp;n)<br><br>{<br><br>    for(int i=0;i&lt;n-1;i++)<br><br>        for(int j=i+1;i&lt;n;j++)<br><br>            if (a[i]&gt;a[j])<br><br>                hoanvi(a[i], a[j])<br><br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 08:52:21 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141035667</guid>
      </item>
      <item>
         <title>257</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141036367</link>
         <description><![CDATA[<div>void vitriletangdan(int *a, int &amp;n)
<br>{
<br>    for (int i=0;i&lt;n;i++)
<br>        if(a[i]%2!=0)
<br>            for(int j=i+1;j&lt;n;i++)
<br>                if a[i]%2!=0 &amp;&amp; a[i]&gt;a[j]
<br>                hoanvi(a[i],a[j])
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 08:56:58 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141036367</guid>
      </item>
      <item>
         <title>261</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141036529</link>
         <description><![CDATA[<div>void vitriamtangdan(int *a, int &amp;n) <br>{ <br>    for (int i=0;i&lt;n;i++) <br>        if(a[i]&lt;0) <br>            for(int j=i+1;j&lt;n;i++) <br>                if a[i]&lt;0 &amp;&amp; a[i]&gt;a[j] <br>                hoanvi(a[i],a[j]) <br>}2</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 08:58:17 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141036529</guid>
      </item>
      <item>
         <title>260</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141037424</link>
         <description><![CDATA[<div>void kiemtrahoanvi(int *a, int *b, int na; int nb)
<br>{
<br>    if(na!=nb)
<br>        cout&lt;&lt;"khong phai";
<br>    tangdan(a,na);
<br>    tangdan(b;nb);
<br>    for (int i=0;i&lt;na;i++)
<br>    {
<br>        if (a[i]!=b[i])
<br>        cout&lt;&lt;"khong phai";
<br>    }
<br>    cout&lt;&lt;"phai";
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 09:04:34 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141037424</guid>
      </item>
      <item>
         <title>129</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141045253</link>
         <description><![CDATA[<div>void nhap(int a[], int &amp;n)
<br>{
<br>	do
<br>	{
<br>		cout&lt;&lt;"\nNhap so phan tu: ";
<br>		cin &gt;&gt; n;
<br>		if (n &lt;= 0 || n &gt; 1000)
<br>		{
<br>			cout&lt;&lt;"\nSo phan tu khong hop le. Xin kiem tra lai !";
<br>		}
<br>	} while (n &lt;= 0 || n &gt; 1000);
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		cout &lt;&lt; "Nhap a[" &lt;&lt; i &lt;&lt; "]: ";
<br>		cin &gt;&gt; a[i];		
<br>	}
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 09:54:26 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141045253</guid>
      </item>
      <item>
         <title>128</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141045570</link>
         <description><![CDATA[<div>void nhap(float a[], int &amp;n)
<br>{
<br>	do
<br>	{
<br>		cout&lt;&lt;"\nNhap so phan tu: ";
<br>		cin &gt;&gt; n;
<br>		if (n &lt;= 0 || n &gt; 1000)
<br>		{
<br>			cout&lt;&lt;"\nSo phan tu khong hop le. Xin kiem tra lai !";
<br>		}
<br>	} while (n &lt;= 0 || n &gt; 1000);
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		cout &lt;&lt; "Nhap a[" &lt;&lt; i &lt;&lt; "]: ";
<br>		cin &gt;&gt; a[i];		
<br>	}
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 09:55:40 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141045570</guid>
      </item>
      <item>
         <title>130</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141045850</link>
         <description><![CDATA[<div>void xuat(float *a, int n)
<br>{
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		cout &lt;&lt; a[i] &lt;&lt; " ";
<br>	}
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 09:56:44 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141045850</guid>
      </item>
      <item>
         <title>131</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141046036</link>
         <description><![CDATA[<div>void xuat(int *a, int n)
<br>{
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		cout &lt;&lt; a[i] &lt;&lt; " ";
<br>	}
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 09:57:32 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141046036</guid>
      </item>
      <item>
         <title>134</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141046853</link>
         <description><![CDATA[<div>float lonnhat(float *a, int n)
<br>{
<br>	float ln = a[0];
<br>	for (int i = 0; i &lt; n;i++)
<br>		if (a[i]&gt;ln) ln = a[i];
<br>	return ln;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 10:01:17 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141046853</guid>
      </item>
      <item>
         <title>135</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141047706</link>
         <description><![CDATA[<div>float duongdautien(float *a, int n)
<br>{
<br>	for (int i = 0; i &lt; n; i++)
<br>		if (a[i]&gt;0) return a[i];
<br>	return -1;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 10:04:36 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141047706</guid>
      </item>
      <item>
         <title>136</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141048366</link>
         <description><![CDATA[<div>int timchancuoi(int *a, int n) <br>{ <br> for (int i = n - 1; i &gt;= 0; i--) <br> if (a[i] % 2 == 0) return a[i]; <br> return -1; <br>} <br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 10:07:46 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141048366</guid>
      </item>
      <item>
         <title>137</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141049381</link>
         <description><![CDATA[<div>int vtnhonhat(float *a, int n)
<br>{
<br>	int vtnhonhat = 0;
<br>	for (int i = 0; i &lt; n; i++)
<br>	if (a[i] &lt; a[vtnhonhat]) vtnhonhat = i;
<br>	return vtnhonhat;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 10:12:36 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141049381</guid>
      </item>
      <item>
         <title>138</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141050066</link>
         <description><![CDATA[<div>int vtchandau(int *a, int n)
<br>{
<br>	for (int i = 0; i &lt; n;i++)
<br>		if (a[i] % 2 == 0) return i;
<br>	return -1;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 10:15:58 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141050066</guid>
      </item>
      <item>
         <title>139</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141051481</link>
         <description><![CDATA[<div>bool kiemtrahoanthien(int n) <br>{ <br> int i = 1; int  s = 0; <br> while (i &lt; n) <br> { <br> if (n%i == 0) s = s + i; <br> i++; <br> } <br> if (s == n)return true; <br> return false; <br>} <br>int vthoanthiencuoi(int *a, int n) <br>{ <br> for (int i = n - 1; i &gt;= 0;i--) <br> if (kiemtrahoanthien(a[i]) == true) return i; <br> return -1; <br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 10:22:25 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141051481</guid>
      </item>
      <item>
         <title>140</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141062564</link>
         <description><![CDATA[<div>float duongnhonhat(float *a, int n)
<br>{
<br>	float duongnhonhat = duongdautien(a, n);
<br>	if (duongnhonhat == -1) return -1;
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (a[i]&gt;0 &amp;&amp; a[i] &lt; duongnhonhat) duongnhonhat = a[i];
<br>	}
<br>	return duongnhonhat;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:23:10 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141062564</guid>
      </item>
      <item>
         <title>141</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141062668</link>
         <description><![CDATA[<div>int vtduongnhonhat(float *a, int n)
<br>{
<br>	int i, min, dem = 0;
<br>	for (i = 0; i &lt; n; i++)
<br>	{
<br>		if (a[i]&gt;0)
<br>		{
<br>			dem++;
<br>			min = i;
<br>			break;
<br>		}
<br>	}
<br>	if (dem == 0) return -1;
<br>	for (i = i + 1; i &lt; n;i++)
<br>	if ((a[i]&gt;0) &amp;&amp; (a[i] &lt; a[min])) min = i;
<br>	return min;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:23:48 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141062668</guid>
      </item>
      <item>
         <title>142</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141062793</link>
         <description><![CDATA[<div>float nhonhat(float *a, int n)
<br>{
<br>	float min = a[0];
<br>	for (int i = 1; i &lt; n; i++)
<br>	{
<br>		if (a[i] &lt; min) min = a[i];
<br>	}
<br>	return min;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:24:47 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141062793</guid>
      </item>
      <item>
         <title>143</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141062946</link>
         <description><![CDATA[<div>int chandau(int *a, int n)
<br>{
<br>	for (int i = 0; i &lt; n; i++)
<br>		if (a[i] % 2 == 0) return a[i];
<br>	return -1;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:25:53 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141062946</guid>
      </item>
      <item>
         <title>144</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141063150</link>
         <description><![CDATA[<div>bool Ngto(int n)
<br>{
<br>	if (n &lt; 2) return false;
<br>	if (n&gt;2)
<br>	{
<br>		if (n % 2 == 0) return false;
<br>		for (int i = 3; i &lt; n; i += 2)
<br>		{
<br>			if (n%i == 0) return false;
<br>		}
<br>	}
<br>	return true;
<br>}
<br>int nguyentodau(int *a, int n)
<br>{
<br>	for (int i = 0; i &lt; n; i++)
<br>		if (Ngto(a[i]) == true) return a[i];
<br>	return -1;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:27:22 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141063150</guid>
      </item>
      <item>
         <title>145</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141063462</link>
         <description><![CDATA[<div>int hoanthiendau(int *a, int n)
<br>{
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (kiemtrahoanthien(a[i]) == true) return a[i];
<br>	}
<br>	return -1;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:29:28 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141063462</guid>
      </item>
      <item>
         <title>216</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141063775</link>
         <description><![CDATA[<div>int DemSoChan(int A[], int &amp;n)
<br>{
<br>	int dem = 0;
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (A[i] % 2 == 0)
<br>		{
<br>			dem++;
<br>		}
<br>	}
<br>	return dem;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:31:43 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141063775</guid>
      </item>
      <item>
         <title>146</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141064179</link>
         <description><![CDATA[<div>int amdau(int *a, int n)
<br>{
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (a[i] &lt; 0) return a[i];
<br>	}
<br>	return -1;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:34:14 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141064179</guid>
      </item>
      <item>
         <title>147</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141064303</link>
         <description><![CDATA[<div>float duongcuoi(float *a, int n)
<br>{
<br>	for (int i = n - 1; i &gt;= 0; i--)
<br>		if (a[i]&gt;0) return a[i];
<br>	return -1;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:34:55 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141064303</guid>
      </item>
      <item>
         <title>148</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141064362</link>
         <description><![CDATA[<div>int nguyentocuoi(int *a, int n)
<br>{
<br>	for (int i = n - 1; i &gt;= 0; i--)
<br>	{
<br>		if (Ngto(a[i]) == true) return a[i];
<br>	}
<br>	return -1;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:35:18 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141064362</guid>
      </item>
      <item>
         <title>217</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141064430</link>
         <description><![CDATA[<div>int demchiahetbay(int A[], int &amp;n) {
<br>	int dem = 0;
<br>	for (int i = 0; i &lt; n; i++) {
<br>		if (A[i] &lt; 0 &amp;&amp; A[i] % 7 == 0) {
<br>			dem++;
<br>		}
<br>		}
<br>	return dem;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:35:38 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141064430</guid>
      </item>
      <item>
         <title>149</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141064453</link>
         <description><![CDATA[<div>int hoanthiencuoi(int *a, int n)
<br>{
<br>	for (int i = n - 1; i &gt;= 0;i--)
<br>		if (kiemtrahoanthien(a[i]) == true) return a[i];
<br>	return -1;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:35:48 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141064453</guid>
      </item>
      <item>
         <title>150</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141064512</link>
         <description><![CDATA[<div>float amlonnhat(float *a, int n)
<br>{
<br>	float ammax = amdau(a, n);
<br>	if (ammax == -1) return 0;
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (a[i]&lt;0 &amp;&amp; a[i]&gt; ammax) ammax = a[i];
<br>	}
<br>	return ammax;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:36:06 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141064512</guid>
      </item>
      <item>
         <title>219</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141064562</link>
         <description><![CDATA[<div>int tansuat(float A[], int n,int &amp;x) {
<br>	int dem = 0;
<br>	cout &lt;&lt; "\n Nhap vao gia tri ma ban can tim: ";
<br>	cin &gt;&gt; x;
<br>	for (int i = 0; i &lt; n; i++) {
<br>		if (A[i] ==x) {
<br>			dem++;
<br>		}
<br>	}
<br>	return dem;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:36:19 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141064562</guid>
      </item>
      <item>
         <title>151</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141064583</link>
         <description><![CDATA[<div>int nguyentolonnhat(int *a, int n)
<br>{
<br>	int nguyentomax = nguyentodau(a, n);
<br>	if (nguyentomax == -1) return 0;
<br>	for (int i = 0; i &lt; n;i++)
<br>		if (Ngto(a[i]) == true &amp;&amp; Ngto(a[i])&gt; nguyentomax)
<br>			nguyentomax = a[i];
<br>	return nguyentomax;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:36:23 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141064583</guid>
      </item>
      <item>
         <title>154</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141064616</link>
         <description><![CDATA[<div>float vtamlonnhat(float *a, int n)
<br>{
<br>	float ammax = amdau(a, n); int k=-1;
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (a[i]&lt;0 &amp;&amp; a[i]&gt; ammax)
<br>			k = i;
<br>	}
<br>	if (k == -1) return -1;
<br>	return k;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:36:37 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141064616</guid>
      </item>
      <item>
         <title>155</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141064666</link>
         <description><![CDATA[<div>float xanhat(float *a, int n)
<br>{
<br>	float x;
<br>	cout &lt;&lt; "Nhap gia tri can tinh : ";
<br>	cin &gt;&gt; x;
<br>	float xanhat = a[0] - x;
<br>	for (int i = 0; i &lt; n; i++)
<br>	if ((a[i] - x)&gt; xanhat) xanhat = a[i] - x;
<br>	return xanhat + x;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:36:57 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141064666</guid>
      </item>
      <item>
         <title>220</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141064767</link>
         <description><![CDATA[<div>int tancung5(int A[], int &amp;n) {
<br>	int dem = 0;
<br>	for (int i = 0; i &lt; n; i++) {
<br>		if (A[i] % 10 == 5) {
<br>			dem++;
<br>		}
<br>	}
<br>	return dem;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:37:34 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141064767</guid>
      </item>
      <item>
         <title>222</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141064966</link>
         <description><![CDATA[<div>int DemCucTri(int A[], int n)<br><br>{<br><br>	int dem = 0;<br><br>	for (int i = 0; i &lt; n; i++)<br><br>	{<br><br>		if (i == 0 &amp;&amp; A[i] != A[i + 1])&nbsp; &nbsp;<br><br>		{<br><br>			dem++;<br><br>		}<br><br>		else if (i == n - 1 &amp;&amp; A[i - 1] != A[i]) &nbsp;<br><br>		{<br><br>			dem++;<br><br>		}<br><br>		else if ((A[i - 1] &gt; A[i] &amp;&amp; A[i] &lt; A[i + 1]) || (A[i - 1] &lt; A[i] &amp;&amp; A[i] &gt; A[i + 1]))<br><br>		{<br><br>			dem++;<br><br>		}<br><br>	}<br><br>	return dem;<br><br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:38:38 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141064966</guid>
      </item>
      <item>
         <title>223</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141065129</link>
         <description><![CDATA[<div><br>int DemSoNguyenTo(int A[], int n) <br>{ <br> int dem = 0; <br> for (int i = 0; i &lt; n; i++) <br> { <br> if (Ngto(A[i]) == 1) <br> { <br> dem++; <br> } <br> } <br> return dem; <br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:39:46 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141065129</guid>
      </item>
      <item>
         <title>225</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141065248</link>
         <description><![CDATA[<div>int DemSoLuongGiaTriLonNhat(float A[], int n)
<br>{
<br>	int dem = 0;
<br>	int max = A[0];
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (max == A[i])
<br>		{
<br>			dem++;
<br>		}
<br>		else if (A[i] &gt; max)
<br>		{
<br>			max = A[i];
<br>			dem = 1;
<br>		}
<br>	}
<br>	return dem;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:40:29 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141065248</guid>
      </item>
      <item>
         <title>226</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141065338</link>
         <description><![CDATA[<div>int DemKeChan(int A[], int n)<br><br>{<br><br>	int dem = 0;<br><br>	for (int i = 0; i &lt; n; i++)<br><br>	{<br><br>		if (A[i] % 2 == 0 &amp;&amp; A[i + 1] % 2 == 0)<br><br>		{<br><br>			dem++;<br><br>		}<br><br>	}<br><br>	if (dem != 0)<br><br>	{<br><br>		dem++;<br><br>	}<br><br>	return dem;<br><br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:41:06 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141065338</guid>
      </item>
      <item>
         <title>227</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141065427</link>
         <description><![CDATA[<div>int DemTraiDau(int A[], int n)<br><br>{<br><br>	int dem = 0;<br><br>	for (int i = 0; i &lt; n; i++)<br><br>	{<br><br>		if (A[i] * A[i + 1] &lt; 0)<br><br>		{<br><br>			dem++;<br><br>		}<br><br>	}<br><br>	if (dem != 0)<br><br>	{<br><br>		dem++;<br><br>	}<br><br>	return dem;<br><br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:41:44 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141065427</guid>
      </item>
      <item>
         <title>230</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141065522</link>
         <description><![CDATA[<div>void LietKeTanSuatXuatHien(int A[], int n)
<br>{
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		int dem = 0;
<br>		for (int j = 0; j &lt; n; j++) 
<br>		{
<br>			if (A[i] == A[j])
<br>			{
<br>				if (i &lt;= j)
<br>				{
<br>					dem++;
<br>				}
<br>				else
<br>				{
<br>					break;
<br>				}
<br>			}
<br>		}
<br>		if (dem != 0)
<br>		{
<br>			cout &lt;&lt; "\n Gia tri " &lt;&lt; A[i] &lt;&lt; " xuat hien  " &lt;&lt; dem &lt;&lt; " lan.\n";
<br>		}
<br>	}
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:42:21 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141065522</guid>
      </item>
      <item>
         <title>231</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141065917</link>
         <description><![CDATA[<div>int KiemTraBiTrung(int A[], int n, int ViTri)
<br>{
<br>	for (int i = ViTri - 1; i &gt;= 0; i--)
<br>	{
<br>		if (A[i] == A[ViTri])
<br>		{
<br>			return 0;  
<br>		}
<br>	}
<br>	return 1;        
<br>}
<br>
<br>
<br>int DemSoLuongPhanTuTrung(int A	[], int n, int ViTri)
<br>{
<br>	int dem = 1;
<br>	for (int i = ViTri + 1; i &lt; n; i++)
<br>	{
<br>		if (A[i] == A[ViTri])
<br>		{
<br>			dem++;
<br>		}
<br>	}
<br>	return dem;
<br>}
<br>
<br>void LietKeCacGiaTriXuatHienDung1Lan(int A	[], int n)
<br>{
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		int CheckTrung = KiemTraBiTrung(A, n, i);
<br>		if (CheckTrung == 1)
<br>		{
<br>			int dem = DemSoLuongPhanTuTrung(A, n, i);
<br>			if (dem == 1)
<br>			{
<br>				cout &lt;&lt; "\nCac phan tu xuat hien dung 1 lan la: " &lt;&lt; A[i];
<br>			}
<br>		}
<br>	}
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:44:37 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141065917</guid>
      </item>
      <item>
         <title>232</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141066054</link>
         <description><![CDATA[<div><br>void LietKeCacGiaTriXuatHienQua1Lan(int A[], int n)<br><br>{<br><br>	for (int i = 0; i &lt; n; i++)<br><br>	{<br><br>		int CheckTrung = KiemTraBiTrung(A, n, i);<br><br>		if (CheckTrung == 1)<br><br>		{<br><br>			int dem = DemSoLuongPhanTuTrung(A, n, i);<br><br>			if (dem != 1)<br><br>			{<br><br>				cout &lt;&lt; "\nCac phan tu xuat hien qua 1 lan la: " &lt;&lt; A[i];<br><br>			}<br><br>		}<br><br>	}<br><br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 11:45:29 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141066054</guid>
      </item>
      <item>
         <title>280</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141068482</link>
         <description><![CDATA[<div>void motvedau(int *mang, const int n) {
<br>	int vt = 0;
<br>	if (mang[0] == 1) vt++;
<br>	for (int i = 1; i &lt; n; i++) {
<br>		if (mang[i] == 1) if (vt == i) { vt++; }
<br>		else { mang[i] = mang[vt]; mang[vt] = 1; vt++; }
<br>	}
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 12:03:02 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141068482</guid>
      </item>
      <item>
         <title>281</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141068535</link>
         <description><![CDATA[<div>void chandaulecuoi(int *mang, const int n) {
<br>	int vt = 0;
<br>	int temp;
<br>	if (mang[0] % 2 == 0) vt++;
<br>	for (int i = 1; i &lt; n; i++) {
<br>		if (mang[i] % 2 == 0) {
<br>			if (vt == i) { vt++; }
<br>			else {
<br>				temp = mang[i];
<br>				mang[i] = mang[vt];
<br>				mang[vt] = temp;
<br>				vt++;
<br>			}
<br>		}
<br>	}
<br>	if (mang[vt] == 0) vt++;
<br>	for (int i = vt; i &lt; n; i++) {
<br>		if (mang[i] == 0) {
<br>			if (vt == i) { vt++; }
<br>			else {
<br>				temp = mang[i];
<br>				mang[i] = mang[vt];
<br>				mang[vt] = temp;
<br>				vt++;
<br>			}
<br>		}
<br>	}
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 12:03:28 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141068535</guid>
      </item>
      <item>
         <title>282</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141068602</link>
         <description><![CDATA[<div>void chiahetchoba(int *mang, const int n) {<br>	int vt = 0;<br>	if (mang[0] % 3 == 0) vt++;<br>	for (int i = 1; i &lt; n; i++) {<br>		if (mang[i] % 3 == 0) {<br>			if (vt == i) { vt++; }<br>			else { mang[i] = mang[vt]; mang[vt] = 1; vt++; }<br>		}<br>	}<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 12:04:02 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141068602</guid>
      </item>
      <item>
         <title>284</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141068770</link>
         <description><![CDATA[<div>void daochan(int *mang, const int n) {<br>	int temp;<br>	for (int i = 0; i &lt; n / 2; i++) {<br>		if (mang[i] % 2 == 0 || mang[n - 1 - i] % 2 == 0) {<br>			temp = mang[i];<br>			mang[i] = mang[n - i - 1];<br>			mang[n - i - 1] = temp;<br>		}<br>	}<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 12:05:32 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141068770</guid>
      </item>
      <item>
         <title>283</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141069718</link>
         <description><![CDATA[<div>void daomang(int *mang, const int n) {<br>	int temp;<br>	for (int i = 0; i &lt; n / 2; i++) {<br>		temp = mang[i];<br>		mang[i] = mang[n - i - 1];<br>		mang[n - i - 1] = temp;<br>	}<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 12:12:42 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141069718</guid>
      </item>
      <item>
         <title>286</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141071626</link>
         <description><![CDATA[<div>void dichtrai(int *mang, const int n, int k) {
<br>	int temp;
<br>	for (int j = 1; j &lt;= k;j++) {
<br>		temp = mang[0];
<br>		for (int i = 1; i &lt; n; i++) {
<br>				temp = mang[i];
<br>				mang[i] = mang[i-1];
<br>				mang[i-1] = temp;
<br>		}
<br>		mang[n - 1] = temp;
<br>	}
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 12:24:13 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141071626</guid>
      </item>
      <item>
         <title>287</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141071676</link>
         <description><![CDATA[<div>void dichphai(int *mang, const int n, int k) {
<br>	int temp;
<br>	for (int j = 1; j &lt;= k;j++) {
<br>		temp = mang[n-1];
<br>		for (int i = 0; i &lt; n-1; i++) {
<br>				temp = mang[i];
<br>				mang[i] = mang[i+1];
<br>				mang[i+1] = temp;
<br>		}
<br>		mang[0] = temp;
<br>	}
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 12:24:31 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141071676</guid>
      </item>
      <item>
         <title>293</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141078990</link>
         <description><![CDATA[<div>void lietkecon(int *a, int n)
<br>{
<br>	int ChieuDai;
<br>	for (int i = 0; i&lt;n; i++)
<br>	{
<br>		for (ChieuDai = 1 + i; ChieuDai &lt;= n; ChieuDai++)
<br>		{
<br>			for (int j = i; j&lt;ChieuDai; j++)
<br>			{
<br>				cout &lt;&lt; a[j];
<br>			}
<br>			cout &lt;&lt; "\n";
<br>		}
<br>	}
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 13:01:32 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141078990</guid>
      </item>
      <item>
         <title>294</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141079105</link>
         <description><![CDATA[<pre>void conlonhonhai(int *a, int n)
{
	int ChieuDai;
	for (int i = 0; i &lt; n; i++)
	{
		for (ChieuDai = 3 + i; ChieuDai &lt;= n; ChieuDai++)
		{
			for (int j = i; j &lt; ChieuDai; j++)
			{
				cout &lt;&lt; a[j];
			}
			cout &lt;&lt; "\n";
		}
	}
}</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 13:02:13 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141079105</guid>
      </item>
      <item>
         <title>295</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141082674</link>
         <description><![CDATA[<pre><strong>bool</strong> kiemtramangtang(<strong>int</strong> *b, <strong>int</strong> nb)
{
	<strong>for</strong>(<strong>int</strong> i=0; i&lt;nb-1; i++)
	{
		<strong>if</strong> (b[i]&gt;b[i+1])
			<strong>return</strong> false;
	}
	<strong>return</strong> true;
}
<br><pre><strong>void</strong> lietkecontang(<strong>int</strong> *a, <strong>int</strong> n)
{
	<strong>int</strong> ChieuDai;
	<strong>int</strong> b[100], nb;
	<strong>for</strong> (<strong>int</strong> i=0; i&lt;n; i++)
	{
		<strong>for</strong> (ChieuDai = 1+i; ChieuDai&lt;=n; ChieuDai++)
		{
			nb=0;
			<strong>for</strong>(<strong>int</strong> j=i; j&lt;ChieuDai; j++)
			{
				b[nb]=a[j];
				nb++;
			}
			<strong>if</strong> (kiemtramangtang(b,nb)==1)
			{
				xuatmang(b,nb);
			}
		}
	}
} 
<br></pre>
<br></pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 13:17:05 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141082674</guid>
      </item>
      <item>
         <title>301</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141084257</link>
         <description><![CDATA[<pre>bool kiemtramangcon(<strong>int</strong> *a, <strong>int</strong> *b, <strong>int</strong> n, <strong>int</strong> m)
{
	<strong>int</strong> i,j,test = false;
	<strong>for</strong> (i=0; i&lt;m; i++)
	{
		<strong>if</strong> (b[i]==a[0])
		{
			<strong>int</strong> h = i;
			<strong>for</strong> (test=true, j=0; j&lt;n;j++,h++)
			{
				<strong>if</strong> (a[j] != b[h])
				{
					test = false;
					<strong>break</strong>;
				}
			}
			<strong>if</strong> (test == true)
				<strong>return</strong> test;      
		}
	}
	<strong>return</strong> test;
} </pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 13:22:16 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141084257</guid>
      </item>
      <item>
         <title>302</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141084624</link>
         <description><![CDATA[<pre><strong>int</strong> Dem(<strong>int</strong> *a, <strong>int</strong> *b, <strong>int</strong> n, <strong>int</strong> m)
{
	<strong>int</strong> i,j,test,dem=0;
	<strong>for</strong> (i=0; i&lt;m; i++)
	{
		<strong>if</strong> (b[i]==a[0])
		{
			<strong>int</strong> h = i;
			<strong>for</strong> (test=1, j=0; j&lt;n;j++,h++)
			{
				<strong>if</strong> (a[j] != b[h])
				{
					test = 0;
					<strong>break</strong>;
				}
			}
			<strong>if</strong> (test == 1)
				dem++;
		}
	}
	<strong>return</strong> dem;
} </pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 13:23:36 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141084624</guid>
      </item>
      <item>
         <title>240</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141089393</link>
         <description><![CDATA[<div>int KiemTraCoGiaTri0(int A	[], int n)
<br>{
<br>	int kt = 0;
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (A[i] == 0)
<br>		{
<br>			kt = 1;
<br>		}
<br>	}
<br>	return kt;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 13:37:31 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141089393</guid>
      </item>
      <item>
         <title>241</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141089849</link>
         <description><![CDATA[<div>int KiemTraCo2GiaTri0LienTiep(int A[], int n)
<br>{
<br>	int kt = 0; 
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (A[i] == 0 &amp;&amp; A[i + 1] == 0)
<br>		{
<br>		kt = 1;
<br>			break;
<br>		}
<br>	}
<br>	return kt;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 13:38:41 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141089849</guid>
      </item>
      <item>
         <title>242</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141090055</link>
         <description><![CDATA[<div>int KiemTraCoSoChan(int A[], int n)
<br>{
<br>	int kt	 = 0; 
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (A[i] % 2 == 0)
<br>		{
<br>			kt = 1;
<br>			break;
<br>		}
<br>	}
<br>	return kt;
<br>}
<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 13:39:11 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141090055</guid>
      </item>
      <item>
         <title>243</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141090213</link>
         <description><![CDATA[<div>int KiemTraNguyenTo(int n)
<br>{
<br>	if (n &lt; 2)
<br>	{
<br>		return 0;
<br>	}
<br>	else if (n &gt; 2)
<br>	{
<br>		if (n % 2 == 0)
<br>		{
<br>			return 0;
<br>		}
<br>		for (int i = 3; i &lt;= sqrt((float)n); i += 2)
<br>		{
<br>			if (n % i == 0)
<br>			{
<br>				return 0;
<br>			}
<br>		}
<br>	}
<br>	return 1;
<br>
<br>}
<br>int KiemTraMangCoSoNguyenTo(int A[], int n)
<br>{
<br>	int kt = 0; 
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (KiemTraNguyenTo(A[i]) == 1)
<br>		{
<br>			kt = 1;
<br>		}
<br>	}
<br>	return kt;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 13:39:38 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141090213</guid>
      </item>
      <item>
         <title>245</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141090378</link>
         <description><![CDATA[<div>int KiemTraToanChan(int A[], int n)
<br>{
<br>	int kt = 1;
<br>	for (int i = 0; i &lt; n; i++)
<br>	{
<br>		if (A[i] % 2 != 0)
<br>		{
<br>			kt = 0;
<br>			break;
<br>		}
<br>	}
<br>	return kt;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 13:40:08 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141090378</guid>
      </item>
      <item>
         <title>248</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141090871</link>
         <description><![CDATA[<div>int KiemTraTangDan(int A[], int n)
<br>{
<br>	int kt = 1;
<br>	for (int i = 0; i &lt; n - 1; i++)
<br>	{
<br>		if (A[i] &gt; A[i + 1])
<br>		{
<br>			kt = 0;
<br>			break;
<br>		}
<br>	}
<br>	return kt;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 13:41:30 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141090871</guid>
      </item>
      <item>
         <title>249</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141091038</link>
         <description><![CDATA[<div>int KiemTraGiamDan(int A[], int n)
<br>{
<br>	int kt = 1;
<br>	for (int i = 0; i &lt; n - 1; i++)
<br>	{
<br>		if (A[i] &lt; A[i + 1])
<br>		{
<br>			kt= 0;
<br>			break;
<br>		}
<br>	}
<br>	return kt;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 13:42:00 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141091038</guid>
      </item>
      <item>
         <title>251</title>
         <author>16521685</author>
         <link>https://padlet.com/16521685/30112016/wish/141091227</link>
         <description><![CDATA[<div>int KiemTraBangNhau(int A[], int n)
<br>{
<br>	int kt = 0;
<br>	for (int i = 0; i &lt; n - 1; i++)
<br>	{
<br>		for (int j = i + 1; j &lt; n; j++)
<br>		{
<br>			if (A[i] == A[j])
<br>			{
<br>				kt = 1;
<br>				break;
<br>			}
<br>		}
<br>	}
<br>	return kt;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 13:42:32 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141091227</guid>
      </item>
      <item>
         <title>218</title>
         <author></author>
         <link>https://padlet.com/16521685/30112016/wish/141163723</link>
         <description><![CDATA[<pre><strong>int</strong> DemDoiXung(<strong>int</strong> a[], <strong>int</strong> n)
{
	<strong>int</strong> dem = 0;
	<strong>for</strong>(<strong>int</strong> i = 0; i &lt; n; i++)
	{
		<strong>if</strong>(a[i] &lt; 0)
		{
			<strong>break</strong>;
		}
		<strong>if</strong>(KiemTraDoiXung(a[i]) == 1)
		{
			dem++;
		}
	}
	<strong>return</strong> dem;
}</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-12-01 16:28:01 UTC</pubDate>
         <guid>https://padlet.com/16521685/30112016/wish/141163723</guid>
      </item>
   </channel>
</rss>
