<?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; C++</title>
	<atom:link href="http://www.ImmanuelMB.com/category/pemrograman/c/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 Menghitung Faktorial</title>
		<link>http://www.ImmanuelMB.com/2009/07/11/program-menghitung-faktorial/</link>
		<comments>http://www.ImmanuelMB.com/2009/07/11/program-menghitung-faktorial/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 00:20:31 +0000</pubDate>
		<dc:creator>Nuel</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[algoritma]]></category>
		<category><![CDATA[faktorial]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[program]]></category>

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




Buatlah algoritma dan program untuk menghitung faktorial sesuai n yang dimasukkan melalui keyboard. Sebagai contoh :
2! = 2 x 1 = 2
4! = 4 x 3 x 2 x 1 = 24

Algoritma :  
1.    Masukkan(n)
2.    hasil &#60;- 1
3.    UNTUK bil &#60;- n S/D 1 LANGKAH -1
hasil &#60;- hasil * bil
AKHIR-UNTUK
4.    Tampilkan(hasil)
 Program : 
#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/11/program-menghitung-faktorial/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Program Menampilkan Beberapa Baris Kalimat yang diminta</title>
		<link>http://www.ImmanuelMB.com/2009/07/11/program-menampilkan-beberapa-baris-kalimat-yang-diminta/</link>
		<comments>http://www.ImmanuelMB.com/2009/07/11/program-menampilkan-beberapa-baris-kalimat-yang-diminta/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 17:43:21 +0000</pubDate>
		<dc:creator>Nuel</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[algoritma]]></category>
		<category><![CDATA[baris]]></category>
		<category><![CDATA[kalimat]]></category>
		<category><![CDATA[program]]></category>

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




Buatlah algoritma dan program dengan menggunakan bentuk FOR untuk menampilkan 7 baris yang berisi tulisan “Pemrograman C++ ” !!!
Algoritma : 
UNTUK bil &#60;- 1 s/d 7
Tampilkan (“Pemrograman C++”)
AKHIR-UNTUK

Program :  
#include &#60;iostream.h&#62;
#include &#60;conio.h&#62;
int main()
{
int bil;
for (bil = 1; bil &#60;= 7; bil++)
{
cout&#60;&#60; &#34;Pemrograman C++\n&#34;;
}
getch();
}
Hasil :  




Warning:  include(/home/immanuel/public_html/wp-content/themes/IBlues/) [function.include]: failed to open stream: No [...]


<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/11/program-menampilkan-beberapa-baris-kalimat-yang-diminta/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Instruksi For</title>
		<link>http://www.ImmanuelMB.com/2009/07/11/instruksi-for/</link>
		<comments>http://www.ImmanuelMB.com/2009/07/11/instruksi-for/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 17:24:52 +0000</pubDate>
		<dc:creator>Nuel</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[akhir]]></category>
		<category><![CDATA[for]]></category>
		<category><![CDATA[instruksi]]></category>
		<category><![CDATA[kode]]></category>
		<category><![CDATA[pseudokode]]></category>
		<category><![CDATA[struktur]]></category>
		<category><![CDATA[untuk]]></category>
		<category><![CDATA[variabel]]></category>

		<guid isPermaLink="false">http://www.ImmanuelMB.com/?p=673</guid>
		<description><![CDATA[Salah satu struktur perulangan yang akan dipelajari adalah berupa UNTUK&#8230;AKHIR-UNTUK. Bentuknya seperti berikut :
Pseudokode : 
UNTUK variabel &#60;- awal s/d akhir  LANGKAH langkah
Pernyataan &#8211; 1
&#8230;..
Pernyataan &#8211; 2
AKHIR &#8211; UNTUK

Kode C++  :
For  (variabel = awal; variabel &#60;= akhir; variabel = variabel + langkah)
{
Pernyataan_1 ;
&#8230;..
Pernyataan_2 ;
}
Catatan : 
1.    Pada C++, bentuk seperti : variabel = variabel [...]


<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/11/instruksi-for/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Program Menampilkan Urutan Kata yang dimasukkan menjadi Terbalik</title>
		<link>http://www.ImmanuelMB.com/2009/07/11/program-menampilkan-urutan-kata-yang-dimasukkan-menjadi-terbalik/</link>
		<comments>http://www.ImmanuelMB.com/2009/07/11/program-menampilkan-urutan-kata-yang-dimasukkan-menjadi-terbalik/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 17:14:57 +0000</pubDate>
		<dc:creator>Nuel</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[kata]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[terbalik]]></category>
		<category><![CDATA[urutan]]></category>

		<guid isPermaLink="false">http://www.ImmanuelMB.com/?p=669</guid>
		<description><![CDATA[Buatlah program dan algoritma untuk menampilkan sebuah kata yang di masukkan dari keyboard menjadi terbalik !
Contoh :  
Sepakbola 
Maka yang ditampilkan
alobkapeS 

 
Algoritma :  
1.    Masukkan(kata)
2.    Jumlah &#60;- panjang(kata) – 1
3.    ULANG SELAMA jumlah &#62;= 0
Tampilkan(kata[jumlah])
jumlah = jumlah – 1
AKHIR-ULANG

Program :  
#include &#60;iostream.h&#62;
#include &#60;conio.h&#62;
#include &#60;string.h&#62;   //prototipe strlen ())
int main()
{
char kata[100];
int jumlah;
cout&#60;&#60; &#34;Masukkan [...]


<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/11/program-menampilkan-urutan-kata-yang-dimasukkan-menjadi-terbalik/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Program Menghitung Jumlah Karakter dari Sebuah Kata</title>
		<link>http://www.ImmanuelMB.com/2009/07/10/program-menghitung-jumlah-karakter-dari-sebuah-kata/</link>
		<comments>http://www.ImmanuelMB.com/2009/07/10/program-menghitung-jumlah-karakter-dari-sebuah-kata/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 16:44:56 +0000</pubDate>
		<dc:creator>Nuel</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[algoritma]]></category>
		<category><![CDATA[karakter]]></category>
		<category><![CDATA[kata]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[program]]></category>

		<guid isPermaLink="false">http://www.ImmanuelMB.com/2009/07/10/program-menghitung-jumlah-karakter-dari-sebuah-kata/</guid>
		<description><![CDATA[Buatlah algoritma dan program yang meminta sebuah kata dimasukkan dari keyboard dan kemudian menghitung jumlah karakter yang terdapat pada kata tersebut !
Algoritma :  
1.    Masukkan(kata)
2.    indeks &#60;- 0
3.    ULANG SELAMA kata[jumlah] &#60;- NULL
jumlah  &#60;-  jumlah + 1
AKHIR-ULANG
4.    Tampilkan(“Jumlah karakter = ”,jumlah)

Program :  
#include &#60;iostream.h&#62;
#include &#60;conio.h&#62;
int main()
{
char kata[100];
int jumlah;
cout&#60;&#60; &#34;Masukkan sebuah kata : &#34;;
cin&#62;&#62; [...]


<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-menghitung-jumlah-karakter-dari-sebuah-kata/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Program Menampilkan Deretan Angka dari 1 – 10</title>
		<link>http://www.ImmanuelMB.com/2009/04/28/program-menampilkan-deretan-angka-dari-1-%e2%80%93-10/</link>
		<comments>http://www.ImmanuelMB.com/2009/04/28/program-menampilkan-deretan-angka-dari-1-%e2%80%93-10/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 18:53:43 +0000</pubDate>
		<dc:creator>Nuel</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[algoritma]]></category>
		<category><![CDATA[angka]]></category>
		<category><![CDATA[deretan]]></category>
		<category><![CDATA[program]]></category>

		<guid isPermaLink="false">http://www.ImmanuelMB.com/?p=585</guid>
		<description><![CDATA[Buatlah algoritma dan program yang menampilkan deretan angka dari 1 -10 !
Algoritma : 
1.    n = 10
2.    ULANG SELAMA n &#62;= 1
Tampilkan(n)
n = n – 1
AKHIR – ULANG


Program :  
#include &#60;iostream.h&#62;
#include &#60;conio.h&#62;
int main()
{
int n;
n = 10;
while (n &#62;= 1)
{
cout&#60;&#60;  n &#60;&#60;&#34;\n&#34;;
n = n &#8211; 1;
}
getch();
}
Hasil :  




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


<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/04/28/program-menampilkan-deretan-angka-dari-1-%e2%80%93-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Program Menampilkan Bilangan Ganjil dari 1 – 50</title>
		<link>http://www.ImmanuelMB.com/2009/04/28/program-menampilkan-bilangan-ganjil-dari-1-%e2%80%93-50/</link>
		<comments>http://www.ImmanuelMB.com/2009/04/28/program-menampilkan-bilangan-ganjil-dari-1-%e2%80%93-50/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 17:05:59 +0000</pubDate>
		<dc:creator>Nuel</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[algoritma]]></category>
		<category><![CDATA[bilangan]]></category>
		<category><![CDATA[ganjil]]></category>
		<category><![CDATA[program]]></category>

		<guid isPermaLink="false">http://www.ImmanuelMB.com/?p=580</guid>
		<description><![CDATA[Buatlah algoritma dan program untuk menampilkan bilangan ganjil yang terletak antara 1 – 50 !
Algoritma :  
1.    n = 1
2.    ULANG SELAMA n &#60;= 50
Tampilkan(n)
n = n + 2
AKHIR – ULANG

Program :  
#include &#60;iostream.h&#62;
#include &#60;conio.h&#62;
int main()
{
int bil;
bil = 1;
while (bil &#60;= 50)
{
cout&#60;&#60;  bil &#60;&#60;&#34;\n&#34;;
bil = bil + 2;
}
getch();
}

Hasil :  


























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


<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/04/28/program-menampilkan-bilangan-ganjil-dari-1-%e2%80%93-50/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Program Menampilkan Beberapa Baris Sebuah Kalimat</title>
		<link>http://www.ImmanuelMB.com/2009/04/27/program-menampilkan-beberapa-baris-sebuah-kalimat/</link>
		<comments>http://www.ImmanuelMB.com/2009/04/27/program-menampilkan-beberapa-baris-sebuah-kalimat/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 05:49:22 +0000</pubDate>
		<dc:creator>Nuel</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[algoritma]]></category>
		<category><![CDATA[baris]]></category>
		<category><![CDATA[kalimat]]></category>
		<category><![CDATA[program]]></category>

		<guid isPermaLink="false">http://www.ImmanuelMB.com/?p=574</guid>
		<description><![CDATA[Buatlah algoritma dan program untuk menampilkan 10 baris yang berisi kalimat “ Good Luck” !
Algoritma :  
1.    n = 1
2.    ULANG SELAMA bil &#60;= 10
Tampilkan(“Good Luck”)
n = n + 1
AKHIR &#8211; ULANG

Program :  
#include &#60;iostream.h&#62;
#include &#60;conio.h&#62;
int main()
{
int n;
n = 1;
while (n &#60;= 10)
{
cout&#60;&#60;&#34;Good Luck\n&#34;;
n = n + 1;
}
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/04/27/program-menampilkan-beberapa-baris-sebuah-kalimat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Program Mencari Faktor Persekutuan Terbesar (FPB)</title>
		<link>http://www.ImmanuelMB.com/2009/04/26/program-mencari-faktor-persekutuan-terbesar-fpb/</link>
		<comments>http://www.ImmanuelMB.com/2009/04/26/program-mencari-faktor-persekutuan-terbesar-fpb/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 05:53:27 +0000</pubDate>
		<dc:creator>Nuel</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[algoritma]]></category>
		<category><![CDATA[faktor]]></category>
		<category><![CDATA[fpb]]></category>
		<category><![CDATA[persekutuan]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[terbesar]]></category>

		<guid isPermaLink="false">http://www.ImmanuelMB.com/?p=556</guid>
		<description><![CDATA[Buatlah sebuah algoritma dan program untuk memperoleh FPB !
Algoritma : 
1.    Masukkan (m,n)
2.    r = sisa_pembagian(m,n)
3.    ULANG SELAMA r != 0
m = n
n = r
r = sisa_pembagian(m,n)
AKHIR &#8211; ULANG
4.    Tampilkan (n)

Program :  
#include &#60;iostream.h&#62;
#include &#60;conio.h&#62;
int main()
{
int m, n, r;
cout&#60;&#60;&#34;Masukkan m : &#34;;
cin&#62;&#62;m;
cout&#60;&#60;&#34;Masukkan n : &#34;;
cin&#62;&#62;n;
r = m % n;
while (r != 0)
{
m = n;
n = [...]


<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/04/26/program-mencari-faktor-persekutuan-terbesar-fpb/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Instruksi While &#8211; Do</title>
		<link>http://www.ImmanuelMB.com/2009/04/26/instruksi-while-do/</link>
		<comments>http://www.ImmanuelMB.com/2009/04/26/instruksi-while-do/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 04:31:22 +0000</pubDate>
		<dc:creator>Nuel</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[akhir]]></category>
		<category><![CDATA[do]]></category>
		<category><![CDATA[instruksi]]></category>
		<category><![CDATA[kode]]></category>
		<category><![CDATA[kondisi]]></category>
		<category><![CDATA[pernyataan]]></category>
		<category><![CDATA[perulangan]]></category>
		<category><![CDATA[pseudokode]]></category>
		<category><![CDATA[selama]]></category>
		<category><![CDATA[struktur]]></category>
		<category><![CDATA[tanda]]></category>
		<category><![CDATA[ulang]]></category>
		<category><![CDATA[while]]></category>

		<guid isPermaLink="false">http://www.ImmanuelMB.com/?p=548</guid>
		<description><![CDATA[Intruksi Perulangan adalah instruksi yang dapat mengulang pelaksanaan sederetan intruksi-instruksi lainnya berulang-ulang sesuai persyaratan yang ditetapkan. Salah satu struktur perulangan  adalah berupa ULANG&#8230;AKHIR-ULANG . Bentuknya seperti berikut :
Pseudokode  
ULANG SELAMA kondisi
Pernyataan &#8211; 1
&#8230;..
Pernyataan &#8211; 2
AKHIR &#8211; ULANG
Kode C++ 
While (kondisi)
{
Pernyataan_1 ;
&#8230;..
Pernyataan_2 ;
}


Dalam hal ini, bagian pernyataan-1 hingga pernyataan-2 akan dijalankan terus-menerus selama kondisi bernilai [...]


<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/04/26/instruksi-while-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Program Menentukan Channel TV</title>
		<link>http://www.ImmanuelMB.com/2009/03/20/program-menentukan-channel-tv/</link>
		<comments>http://www.ImmanuelMB.com/2009/03/20/program-menentukan-channel-tv/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 14:41:43 +0000</pubDate>
		<dc:creator>Nuel</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[algoritma]]></category>
		<category><![CDATA[channel]]></category>
		<category><![CDATA[input]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[stasiun]]></category>
		<category><![CDATA[switch-case]]></category>
		<category><![CDATA[tv]]></category>

		<guid isPermaLink="false">http://www.ImmanuelMB.com/?p=435</guid>
		<description><![CDATA[Berdasarkan data berikut :
1 = SCTV
2 = RCTI
3 = INDOSIAR
4 = TRANS 7
5 = GLOBAL TV
6 = TPI
7 = TRANS TV
8 = METRO TV
9 = ANTV

Buatlah algoritma dan program yang mula-mula meminta no. Channel TV dari input keyboard dan kemudian menampilkan nama stasiun TV tersebut !

Algoritma :
1.    Masukan (Channel_TV)
2.    COCOK Channel_TV
DENGAN 1 MAKA
Tampilkan (“SCTV”)
DENGAN 2 [...]


<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/03/20/program-menentukan-channel-tv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Program Menentukan Jumlah Hari Dalam Bulan Tersebut</title>
		<link>http://www.ImmanuelMB.com/2009/03/20/program-menentukan-jumlah-hari-dalam-bulan-tersebut/</link>
		<comments>http://www.ImmanuelMB.com/2009/03/20/program-menentukan-jumlah-hari-dalam-bulan-tersebut/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 14:33:14 +0000</pubDate>
		<dc:creator>Nuel</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[algoritma]]></category>
		<category><![CDATA[bulan]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[hari]]></category>
		<category><![CDATA[input]]></category>
		<category><![CDATA[jumlah]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[switch-case]]></category>

		<guid isPermaLink="false">http://www.ImmanuelMB.com/?p=431</guid>
		<description><![CDATA[Buatlah algoritma dari program yang meminta data bulan (1&#8230;12) dari input keyboard dan kemudian menentukan jumlah hari dari bulan tersebut !

Algoritma :
1.    Masukan (kode_bulan)
2.    COCOK kode_bulan
DENGAN 2 MAKA
Tampilkan (“Jumlah hari 28 atau 29”)
DENGAN 1 MAKA 
Tampilkan (“Jumlah hari 31”)
DENGAN 3 MAKA
Tampilkan (“Jumlah hari 31”)
DENGAN 5 MAKA
Tampilkan (“Jumlah hari 31”)
DENGAN 7 MAKA 
Tampilkan (“Jumlah hari 31”)
DENGAN [...]


<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/03/20/program-menentukan-jumlah-hari-dalam-bulan-tersebut/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Program Menentukan Nama Bulan Menurut Angka</title>
		<link>http://www.ImmanuelMB.com/2009/03/20/program-menentukan-nama-bulan-menurut-angka/</link>
		<comments>http://www.ImmanuelMB.com/2009/03/20/program-menentukan-nama-bulan-menurut-angka/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 14:24:11 +0000</pubDate>
		<dc:creator>Nuel</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[algoritma]]></category>
		<category><![CDATA[angka]]></category>
		<category><![CDATA[bulan]]></category>
		<category><![CDATA[input]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[kode]]></category>
		<category><![CDATA[nama]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[switch-case]]></category>

		<guid isPermaLink="false">http://www.ImmanuelMB.com/?p=427</guid>
		<description><![CDATA[Buatlah algoritma dan program yang membaca data kode bulan dari input keyboard dan kemudian menampilkan nama bulan !

Algoritma :
1.    Masukan (kode_bulan)
2.    COCOK kode_bulan
DENGAN 1 MAKA
Tampilkan (“Januari”)
DENGAN 2 MAKA 
Tampilkan (“Februari”)
DENGAN 3 MAKA
Tampilkan (“Maret”)
DENGAN 4 MAKA
Tampilkan (“April”)
DENGAN 5 MAKA 
Tampilkan (“Mei”)
DENGAN 6 MAKA
Tampilkan (“Juni”)
DENGAN 7 MAKA
Tampilkan (“Juli”)
DENGAN 8 MAKA 
Tampilkan (“Agustus”)
DENGAN 9 MAKA
Tampilkan (“September”)
DENGAN 10 MAKA
Tampilkan [...]


<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/03/20/program-menentukan-nama-bulan-menurut-angka/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instruksi Switch-Case</title>
		<link>http://www.ImmanuelMB.com/2009/03/20/instruksi-switch-case/</link>
		<comments>http://www.ImmanuelMB.com/2009/03/20/instruksi-switch-case/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 14:04:21 +0000</pubDate>
		<dc:creator>Nuel</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[algoritma]]></category>
		<category><![CDATA[instruksi]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[pseudokode]]></category>
		<category><![CDATA[switch-case]]></category>
		<category><![CDATA[variabel]]></category>

		<guid isPermaLink="false">http://www.ImmanuelMB.com/?p=421</guid>
		<description><![CDATA[Dalam bahasa C++, instruksi Switch-Case digunakan sebagai instruksi pemilihan di mana aksi yang akan dilakukan hanya bergantung pada nilai dari satu macam variabel. Dengan kata lain, variabel yang menentukan ini mungkin memiliki banyak macam nilai dan setiap nilainya berkaitan dengan satu macam aksi.
Bentuk 1 kasus : 
Pseudokode (bentuk algoritma yang menggunakan berbagai notasi yang dimaksud [...]


<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/03/20/instruksi-switch-case/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
