<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Kamar Nuel &#187; Hacking</title>
	<atom:link href="http://www.ImmanuelMB.com/category/hacking/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ImmanuelMB.com</link>
	<description>Buat Belajar Dan Berbagi</description>
	<lastBuildDate>Mon, 06 Sep 2010 02:14:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Program Menampilkan Deretan Angka sesuai Gambar</title>
		<link>http://www.ImmanuelMB.com/2009/07/10/program-menampilkan-deretan-angka-sesuai-gambar/</link>
		<comments>http://www.ImmanuelMB.com/2009/07/10/program-menampilkan-deretan-angka-sesuai-gambar/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 16:22:27 +0000</pubDate>
		<dc:creator>Nuel</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[algoritma]]></category>
		<category><![CDATA[angka]]></category>
		<category><![CDATA[deretan]]></category>
		<category><![CDATA[gambar]]></category>
		<category><![CDATA[program]]></category>

		<guid isPermaLink="false">http://www.ImmanuelMB.com/?p=657</guid>
		<description><![CDATA[




Buatlah algoritma dan program untuk menampilkan deret berikut dengan menggunakan struktur pengulangan :
1000000000
100000000
10000000
1000000
100000
10000
1000
100
10
1

Algoritma :  
1.    angka &#60;- 1000000000
2.    ULANG SELAMA angka &#60;- 1
Tampilkan (nilai)
nilai  &#60;- nilai / 10
AKHIR &#8211; ULANG
Program :  
#include &#60;iostream.h&#62;
#include &#60;conio.h&#62;
int main()
{
long int angka;
angka = 1000000000;
while (angka &#62;= 1)
{
cout&#60;&#60;  angka &#60;&#60;&#34;\n&#34;;
angka = angka / 10;
}
getch();
}
Hasil : 









Warning:  include(/home/immanuel/public_html/wp-content/themes/IBlues/) [function.include]: [...]


<b>Warning</b>:  include(/home/immanuel/public_html/wp-content/themes/IBlues/) [<a href='function.include'>function.include</a>]: failed to open stream: No such device in <b>/home/immanuel/public_html/wp-content/plugins/yet-another-related-posts-plugin/magic.php</b> on line <b>300</b>

<b>Warning</b>:  include() [<a href='function.include'>function.include</a>]: Failed opening '/home/immanuel/public_html/wp-content/themes/IBlues/' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in <b>/home/immanuel/public_html/wp-content/plugins/yet-another-related-posts-plugin/magic.php</b> on line <b>300</b>
]]></description>
		<wfw:commentRss>http://www.ImmanuelMB.com/2009/07/10/program-menampilkan-deretan-angka-sesuai-gambar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Menyembunyikan Diri Saat Berinternet</title>
		<link>http://www.ImmanuelMB.com/2009/02/09/menyembunyikan-diri-saat-berinternet/</link>
		<comments>http://www.ImmanuelMB.com/2009/02/09/menyembunyikan-diri-saat-berinternet/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 09:01:59 +0000</pubDate>
		<dc:creator>Nuel</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[anonymouse]]></category>
		<category><![CDATA[hacker]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[isp]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[situs]]></category>

		<guid isPermaLink="false">http://www.ImmanuelMB.com/?p=233</guid>
		<description><![CDATA[




  Menyembunyikan diri adalah sesuatu yang mudah tapi juga sulit. Sangat mudah coz kamu tinggal menyembunyikan alamat IP kamu tapi juga sulit coz banyak juga hacker yang akhirnya ketahuan dan tertangkap, jadi jangan gunakan hal ini untuk kejahatan tapi gunakan untuk keamanan diri sendiri saat berinternet.
Pada saat kita melakukan koneksi ke internet, sebuah alamat [...]


<b>Warning</b>:  include(/home/immanuel/public_html/wp-content/themes/IBlues/) [<a href='function.include'>function.include</a>]: failed to open stream: No such device in <b>/home/immanuel/public_html/wp-content/plugins/yet-another-related-posts-plugin/magic.php</b> on line <b>300</b>

<b>Warning</b>:  include() [<a href='function.include'>function.include</a>]: Failed opening '/home/immanuel/public_html/wp-content/themes/IBlues/' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in <b>/home/immanuel/public_html/wp-content/plugins/yet-another-related-posts-plugin/magic.php</b> on line <b>300</b>
]]></description>
		<wfw:commentRss>http://www.ImmanuelMB.com/2009/02/09/menyembunyikan-diri-saat-berinternet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Siapa Sih Yang Punya Website Ini ?</title>
		<link>http://www.ImmanuelMB.com/2009/02/02/siapa-sih-yang-punya-website-ini/</link>
		<comments>http://www.ImmanuelMB.com/2009/02/02/siapa-sih-yang-punya-website-ini/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 14:31:56 +0000</pubDate>
		<dc:creator>Nuel</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[ahli]]></category>
		<category><![CDATA[alamat]]></category>
		<category><![CDATA[dasar]]></category>
		<category><![CDATA[hacker]]></category>
		<category><![CDATA[ilmu]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[kadaluarsa]]></category>
		<category><![CDATA[komputer]]></category>
		<category><![CDATA[nama]]></category>
		<category><![CDATA[pemilik]]></category>
		<category><![CDATA[tanggal]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[whois]]></category>

		<guid isPermaLink="false">http://www.ImmanuelMB.com/?p=160</guid>
		<description><![CDATA[  Kadang kita sering bertanya-tanya ketika menemukan sebuah website yang menarik. Pertanyaan yang paling sering diungkapkan misalnya : Siapa sih yang punya website ini ?
Mungkin bagi orang awam untuk mengetahui pemilik dari website tersebut adalah pekerjaan yang sulit dan hanya membuang-buang waktu saja tapi bagi seorang hacker atau seorang yang ahli komputer, langkah awal [...]


<b>Warning</b>:  include(/home/immanuel/public_html/wp-content/themes/IBlues/) [<a href='function.include'>function.include</a>]: failed to open stream: No such device in <b>/home/immanuel/public_html/wp-content/plugins/yet-another-related-posts-plugin/magic.php</b> on line <b>300</b>

<b>Warning</b>:  include() [<a href='function.include'>function.include</a>]: Failed opening '/home/immanuel/public_html/wp-content/themes/IBlues/' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in <b>/home/immanuel/public_html/wp-content/plugins/yet-another-related-posts-plugin/magic.php</b> on line <b>300</b>
]]></description>
		<wfw:commentRss>http://www.ImmanuelMB.com/2009/02/02/siapa-sih-yang-punya-website-ini/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hacking ? Awal dari Kebaikan atau Kejahatan ?</title>
		<link>http://www.ImmanuelMB.com/2009/01/18/hacking-awal-dari-kebaikan-atau-kejahatan/</link>
		<comments>http://www.ImmanuelMB.com/2009/01/18/hacking-awal-dari-kebaikan-atau-kejahatan/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 18:09:58 +0000</pubDate>
		<dc:creator>Nuel</dc:creator>
				<category><![CDATA[Hacking]]></category>

		<guid isPermaLink="false">http://immanuelmb.com/?p=15</guid>
		<description><![CDATA[Di bagian halaman &#34;Hacking&#34;, aku akan mencoba menjelaskan bahwa belajar Hacking tidaklah selalu negatif tapi merupakan keharusan agar selalu waspada di Internet.



Warning:  include(/home/immanuel/public_html/wp-content/themes/IBlues/) [function.include]: failed to open stream: No such device in /home/immanuel/public_html/wp-content/plugins/yet-another-related-posts-plugin/magic.php on line 300

Warning:  include() [function.include]: Failed opening '/home/immanuel/public_html/wp-content/themes/IBlues/' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/immanuel/public_html/wp-content/plugins/yet-another-related-posts-plugin/magic.php on line 300



<b>Warning</b>:  include(/home/immanuel/public_html/wp-content/themes/IBlues/) [<a href='function.include'>function.include</a>]: failed to open stream: No such device in <b>/home/immanuel/public_html/wp-content/plugins/yet-another-related-posts-plugin/magic.php</b> on line <b>300</b>

<b>Warning</b>:  include() [<a href='function.include'>function.include</a>]: Failed opening '/home/immanuel/public_html/wp-content/themes/IBlues/' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in <b>/home/immanuel/public_html/wp-content/plugins/yet-another-related-posts-plugin/magic.php</b> on line <b>300</b>
]]></description>
		<wfw:commentRss>http://www.ImmanuelMB.com/2009/01/18/hacking-awal-dari-kebaikan-atau-kejahatan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
