<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Abheaaron's Weblog</title>
	<atom:link href="http://abheaaron.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://abheaaron.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sun, 06 Jun 2010 12:07:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='abheaaron.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Abheaaron's Weblog</title>
		<link>http://abheaaron.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://abheaaron.wordpress.com/osd.xml" title="Abheaaron&#039;s Weblog" />
	<atom:link rel='hub' href='http://abheaaron.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Game Tebak Angka</title>
		<link>http://abheaaron.wordpress.com/2010/06/06/game-tebak-angka/</link>
		<comments>http://abheaaron.wordpress.com/2010/06/06/game-tebak-angka/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 12:07:19 +0000</pubDate>
		<dc:creator>abheaaron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://abheaaron.wordpress.com/?p=49</guid>
		<description><![CDATA[public static void main(String[] args)throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int[] InputAngka= new int[11]; int x=0; int AngkaRahasia = (int)(Math.random()*((10-0+1)+0)); System.out.println(&#8220;Tebak angka x (angka 0 sampai 10) :&#8221;); do{ if (x&#60;=4) { System.out.print(&#8220;Masukkan Angka Prediksi Anda &#8220;+ (x+1) +&#8221;: &#8220;); InputAngka[x]= Integer.parseInt(br.readLine()); //Check data sama dengan angka rahasia dengan memasukkan data prediksi [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=49&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>public static void main(String[] args)throws IOException {</p>
<p>BufferedReader br = new BufferedReader(new InputStreamReader(System.in));</p>
<p>int[] InputAngka= new int[11];</p>
<p>int x=0;</p>
<p>int AngkaRahasia = (int)(Math.random()*((10-0+1)+0));</p>
<p>System.out.println(&#8220;Tebak angka x (angka 0 sampai 10) :&#8221;);</p>
<p>do{</p>
<p>if (x&lt;=4)</p>
<p>{</p>
<p>System.out.print(&#8220;Masukkan Angka Prediksi Anda &#8220;+ (x+1) +&#8221;: &#8220;);</p>
<p>InputAngka[x]= Integer.parseInt(br.readLine());</p>
<p>//Check data sama dengan angka rahasia dengan memasukkan data prediksi dan data rahasia untuk dicheck</p>
<p>if (checkBenarJawaban(AngkaRahasia,InputAngka[x])==false)</p>
<p>{</p>
<p>System.out.println(&#8220;Prediksi Anda SALAH&#8221;);</p>
<p>}else</p>
<p>{</p>
<p>System.out.println(&#8220;Prediksi Anda Benar&#8221;);</p>
<p>System.out.println(&#8220;Angka rahasia : &#8221; + AngkaRahasia);</p>
<p>//menampilkan data prediksi dengan memanggil Procedure tampilDataPrediksi</p>
<p>tampilDataPrediksi(InputAngka,x);</p>
<p>}</p>
<p>}else</p>
<p>{              System.out.println(&#8220;Anda KALAH, Maksimal prediksi 5 kali&#8221;);</p>
<p>System.out.println(&#8220;Angka rahasia : &#8221; + AngkaRahasia);</p>
<p>//menampilkan data prediksi dengan memanggil Procedure tampilDataPrediksi</p>
<p>tampilDataPrediksi(InputAngka,x-1);</p>
<p>InputAngka[x]=AngkaRahasia;}</p>
<p>x+=1;</p>
<p>}while(AngkaRahasia!=InputAngka[x-1]);</p>
<p>}</p>
<p>//Funtion</p>
<p>static boolean checkBenarJawaban(int prediksi, int angkarahasia)</p>
<p>{          if (prediksi==angkarahasia)</p>
<p>{</p>
<p>return true;</p>
<p>}else</p>
<p>return false;</p>
<p>}</p>
<p>//Procedure</p>
<p>static void tampilDataPrediksi(int[] prediksi,int jumlahprediksi)</p>
<p>{</p>
<p>System.out.println(&#8220;Prediksi Anda&#8221;);</p>
<p>for (int y=0;y&lt;=jumlahprediksi;y++)</p>
<p>{</p>
<p>System.out.print(prediksi[y]+&#8221;\t&#8221;);</p>
<p>}}}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abheaaron.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abheaaron.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abheaaron.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abheaaron.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abheaaron.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abheaaron.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abheaaron.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abheaaron.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abheaaron.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abheaaron.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abheaaron.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abheaaron.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abheaaron.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abheaaron.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=49&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abheaaron.wordpress.com/2010/06/06/game-tebak-angka/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d70d3ba230a040322b798b318e9ff1d3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abheaaron</media:title>
		</media:content>
	</item>
		<item>
		<title>Fibonanci</title>
		<link>http://abheaaron.wordpress.com/2010/06/06/fibonanci/</link>
		<comments>http://abheaaron.wordpress.com/2010/06/06/fibonanci/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 12:06:39 +0000</pubDate>
		<dc:creator>abheaaron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://abheaaron.wordpress.com/?p=47</guid>
		<description><![CDATA[public static void main(String[] args)throws IOException { //Memanggil Function inputDeret int JumlahDeret = inputDeret(); //Memanggil Procedure dataFibonanci dataFibonanci(JumlahDeret); } //Funtion static int inputDeret() throws IOException {          BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); System.out.print(&#8220;Masukkan jumlah deret Fibonanci : &#8220;); int xDeret = Integer.parseInt(br.readLine()); return xDeret; } //Procedure static void dataFibonanci(int JumlahDeret2) { int data1=0; int data2=1; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=47&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>public static void main(String[] args)throws IOException {</p>
<p>//Memanggil Function inputDeret</p>
<p>int JumlahDeret = inputDeret();</p>
<p>//Memanggil Procedure dataFibonanci</p>
<p>dataFibonanci(JumlahDeret);</p>
<p>}</p>
<p>//Funtion</p>
<p>static int inputDeret() throws IOException</p>
<p>{          BufferedReader br = new BufferedReader(new InputStreamReader(System.in));</p>
<p>System.out.print(&#8220;Masukkan jumlah deret Fibonanci : &#8220;);</p>
<p>int xDeret = Integer.parseInt(br.readLine());</p>
<p>return xDeret;</p>
<p>}</p>
<p>//Procedure</p>
<p>static void dataFibonanci(int JumlahDeret2)</p>
<p>{</p>
<p>int data1=0;</p>
<p>int data2=1;</p>
<p>int Fibonanci;</p>
<p>for (int counter=1;counter&lt;=JumlahDeret2;counter++)</p>
<p>{</p>
<p>if (counter==1)</p>
<p>{              System.out.print(data1 + &#8220;\t&#8221;);</p>
<p>}else if(counter==2)</p>
<p>{              System.out.print(data2 + &#8220;\t&#8221;);</p>
<p>}else</p>
<p>{              Fibonanci = data1+data2;</p>
<p>data1 = data2;</p>
<p>data2=Fibonanci;</p>
<p>System.out.print(Fibonanci + &#8220;\t&#8221;);</p>
<p>}}}}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abheaaron.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abheaaron.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abheaaron.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abheaaron.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abheaaron.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abheaaron.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abheaaron.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abheaaron.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abheaaron.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abheaaron.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abheaaron.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abheaaron.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abheaaron.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abheaaron.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=47&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abheaaron.wordpress.com/2010/06/06/fibonanci/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d70d3ba230a040322b798b318e9ff1d3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abheaaron</media:title>
		</media:content>
	</item>
		<item>
		<title>Perkalian Array</title>
		<link>http://abheaaron.wordpress.com/2010/06/06/perkalian-array/</link>
		<comments>http://abheaaron.wordpress.com/2010/06/06/perkalian-array/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 12:06:06 +0000</pubDate>
		<dc:creator>abheaaron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://abheaaron.wordpress.com/?p=45</guid>
		<description><![CDATA[public static void main(String[] args)throws IOException { int[] dataArray1 = new int[9]; int[] dataArray2 = new int[9]; int[] hasil = new int[9]; BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); dataArray1[0]=11; dataArray1[1]=12; dataArray1[2]=13; dataArray1[3]=14; dataArray1[4]=15; dataArray1[5]=16; dataArray1[6]=17; dataArray1[7]=18; dataArray1[8]=19; dataArray2[0]=17; dataArray2[1]=5; dataArray2[2]=20; dataArray2[3]=27; dataArray2[4]=40; dataArray2[5]=36; dataArray2[6]=73; dataArray2[7]=28; dataArray2[8]=77; //menampilkan data array System.out.println(&#8220;Data Array 1 &#8220;); for (int [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=45&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>public static void main(String[] args)throws IOException {</p>
<p>int[] dataArray1 = new int[9];</p>
<p>int[] dataArray2 = new int[9];</p>
<p>int[] hasil = new int[9];</p>
<p>BufferedReader br = new BufferedReader(new InputStreamReader(System.in));</p>
<p>dataArray1[0]=11;</p>
<p>dataArray1[1]=12;</p>
<p>dataArray1[2]=13;</p>
<p>dataArray1[3]=14;</p>
<p>dataArray1[4]=15;</p>
<p>dataArray1[5]=16;</p>
<p>dataArray1[6]=17;</p>
<p>dataArray1[7]=18;</p>
<p>dataArray1[8]=19;</p>
<p>dataArray2[0]=17;</p>
<p>dataArray2[1]=5;</p>
<p>dataArray2[2]=20;</p>
<p>dataArray2[3]=27;</p>
<p>dataArray2[4]=40;</p>
<p>dataArray2[5]=36;</p>
<p>dataArray2[6]=73;</p>
<p>dataArray2[7]=28;</p>
<p>dataArray2[8]=77;</p>
<p>//menampilkan data array</p>
<p>System.out.println(&#8220;Data Array 1 &#8220;);</p>
<p>for (int x=0; x&lt;=8;x++)</p>
<p>{</p>
<p>System.out.print(dataArray1[x] +&#8221;\t&#8221;);</p>
<p>}</p>
<p>System.out.println();</p>
<p>System.out.println(&#8220;Data Array 2 &#8220;);</p>
<p>for (int x=0; x&lt;=8;x++)</p>
<p>{</p>
<p>System.out.print(dataArray2[x] +&#8221;\t&#8221;);</p>
<p>}</p>
<p>for (int x=0; x&lt;=8;x++)</p>
<p>{      //Proses perkalian dengan memanggil Function perkalianDataArray dengan mengirimkan data array yang akan dikalikan</p>
<p>hasil[x]= perkalianDataArray(dataArray1[x],dataArray2[x]);</p>
<p>}</p>
<p>//menampilkan hasil perkalian</p>
<p>System.out.println();</p>
<p>System.out.println(&#8220;Data Array Hasil Perkalian &#8220;);</p>
<p>for (int x=0; x&lt;=8;x++)</p>
<p>{</p>
<p>System.out.print(hasil[x] +&#8221;\t&#8221;);</p>
<p>}}</p>
<p>//Funtion</p>
<p>static int perkalianDataArray(int dataArray11, int dataArray22)</p>
<p>{</p>
<p>return dataArray11*dataArray22;</p>
<p>}}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abheaaron.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abheaaron.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abheaaron.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abheaaron.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abheaaron.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abheaaron.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abheaaron.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abheaaron.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abheaaron.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abheaaron.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abheaaron.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abheaaron.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abheaaron.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abheaaron.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=45&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abheaaron.wordpress.com/2010/06/06/perkalian-array/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d70d3ba230a040322b798b318e9ff1d3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abheaaron</media:title>
		</media:content>
	</item>
		<item>
		<title>Array Pindah</title>
		<link>http://abheaaron.wordpress.com/2010/06/06/array-pindah/</link>
		<comments>http://abheaaron.wordpress.com/2010/06/06/array-pindah/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 12:05:19 +0000</pubDate>
		<dc:creator>abheaaron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://abheaaron.wordpress.com/?p=42</guid>
		<description><![CDATA[public static void main(String[] args)throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int[] dataArray = new int[9]; dataArray[0]=11; dataArray[1]=12; dataArray[2]=13; dataArray[3]=14; dataArray[4]=15; dataArray[5]=16; dataArray[6]=17; dataArray[7]=18; dataArray[8]=19; //menampilkan data array System.out.println(&#8220;Data awal &#8220;); for (int x=0; x&#60;=8;x++) { System.out.print(dataArray[x] +&#8221;\t&#8221;); } System.out.println(); System.out.print(&#8220;Input index yang akan dipindahkan : &#8220;); int xDataDipindah = Integer.parseInt(br.readLine()); System.out.print(&#8220;Input index [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=42&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>public static void main(String[] args)throws IOException {</p>
<p>BufferedReader br = new BufferedReader(new InputStreamReader(System.in));</p>
<p>int[] dataArray = new int[9];</p>
<p>dataArray[0]=11;</p>
<p>dataArray[1]=12;</p>
<p>dataArray[2]=13;</p>
<p>dataArray[3]=14;</p>
<p>dataArray[4]=15;</p>
<p>dataArray[5]=16;</p>
<p>dataArray[6]=17;</p>
<p>dataArray[7]=18;</p>
<p>dataArray[8]=19;</p>
<p>//menampilkan data array</p>
<p>System.out.println(&#8220;Data awal &#8220;);</p>
<p>for (int x=0; x&lt;=8;x++)</p>
<p>{</p>
<p>System.out.print(dataArray[x] +&#8221;\t&#8221;);</p>
<p>}</p>
<p>System.out.println();</p>
<p>System.out.print(&#8220;Input index yang akan dipindahkan : &#8220;);</p>
<p>int xDataDipindah = Integer.parseInt(br.readLine());</p>
<p>System.out.print(&#8220;Input index yang akan dituju : &#8220;);</p>
<p>int xDataDituju = Integer.parseInt(br.readLine());</p>
<p>//Memanggil procedure pindahDataArray untuk memindahkan sesuai index yang dikirim</p>
<p>pemindahanDataArray(xDataDipindah,xDataDituju,dataArray);</p>
<p>//menampilkan data setelah dipindahkan oleh procedure pindahDataArray</p>
<p>System.out.println(&#8220;Data Setelah dipindahkan &#8220;);</p>
<p>for (int x=0; x&lt;=8;x++)</p>
<p>{</p>
<p>System.out.print(dataArray[x] +&#8221;\t&#8221;);</p>
<p>}}</p>
<p>//Procedure</p>
<p>static void pemindahanDataArray(int x1, int x2, int[] dataArray2)</p>
<p>{</p>
<p>int cadangan;</p>
<p>cadangan = dataArray2[x1];</p>
<p>dataArray2[x1] = dataArray2[x2];</p>
<p>dataArray2[x2]=cadangan;</p>
<p>}}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abheaaron.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abheaaron.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abheaaron.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abheaaron.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abheaaron.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abheaaron.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abheaaron.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abheaaron.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abheaaron.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abheaaron.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abheaaron.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abheaaron.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abheaaron.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abheaaron.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=42&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abheaaron.wordpress.com/2010/06/06/array-pindah/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d70d3ba230a040322b798b318e9ff1d3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abheaaron</media:title>
		</media:content>
	</item>
		<item>
		<title>QB_4 Cek Bilangan genap/ganjil. Positif/negatif</title>
		<link>http://abheaaron.wordpress.com/2010/06/06/qb_4-cek-bilangan-genapganjil-positifnegatif/</link>
		<comments>http://abheaaron.wordpress.com/2010/06/06/qb_4-cek-bilangan-genapganjil-positifnegatif/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 12:04:41 +0000</pubDate>
		<dc:creator>abheaaron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://abheaaron.wordpress.com/?p=41</guid>
		<description><![CDATA[public static void main(String[] args)throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); System.out.print(&#8220;Masukkan Angka : &#8220;); int angka = Integer.parseInt(br.readLine()); boolean hasilCheck; //Pemanggilan function checkGenapGanjil dengan mengirimkan data dalam vareabel X hasilCheck = checkGenapGanjil(angka); if (hasilCheck==true) { System.out.println(&#8220;Data yang Anda Masukkan Bilangan GENAP&#8221;); }else {      System.out.println(&#8220;Data yang Anda Masukkan Bilangan GANJIL&#8221;);} //Pemanggilan function checkPositifNegatif [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=41&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>public static void main(String[] args)throws IOException {</p>
<p>BufferedReader br = new BufferedReader(new InputStreamReader(System.in));</p>
<p>System.out.print(&#8220;Masukkan Angka : &#8220;);</p>
<p>int angka = Integer.parseInt(br.readLine());</p>
<p>boolean hasilCheck;</p>
<p>//Pemanggilan function checkGenapGanjil dengan mengirimkan data dalam vareabel X</p>
<p>hasilCheck = checkGenapGanjil(angka);</p>
<p>if (hasilCheck==true)</p>
<p>{</p>
<p>System.out.println(&#8220;Data yang Anda Masukkan Bilangan GENAP&#8221;);</p>
<p>}else</p>
<p>{      System.out.println(&#8220;Data yang Anda Masukkan Bilangan GANJIL&#8221;);}</p>
<p>//Pemanggilan function checkPositifNegatif dengan mengirimkan data dalam vareabel X</p>
<p>hasilCheck = checkPositifNegatif(angka);</p>
<p>if (hasilCheck==true)</p>
<p>{</p>
<p>System.out.println(&#8220;Data yang Anda Masukkan Bilangan POSITIF&#8221;);</p>
<p>}else</p>
<p>{      System.out.println(&#8220;Data yang Anda Masukkan Bilangan NEGATIF&#8221;);}</p>
<p>}</p>
<p>//Function</p>
<p>static boolean checkGenapGanjil(int angka1)</p>
<p>{</p>
<p>if (angka1%2==0)</p>
<p>{</p>
<p>return true;</p>
<p>}else</p>
<p>{</p>
<p>return false;</p>
<p>}}</p>
<p>//Function</p>
<p>static boolean checkPositifNegatif(int angka2)</p>
<p>{</p>
<p>if(angka2 &gt;=0)</p>
<p>{</p>
<p>return true;</p>
<p>}</p>
<p>else</p>
<p>{</p>
<p>return false;</p>
<p>}}}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abheaaron.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abheaaron.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abheaaron.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abheaaron.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abheaaron.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abheaaron.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abheaaron.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abheaaron.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abheaaron.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abheaaron.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abheaaron.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abheaaron.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abheaaron.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abheaaron.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=41&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abheaaron.wordpress.com/2010/06/06/qb_4-cek-bilangan-genapganjil-positifnegatif/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d70d3ba230a040322b798b318e9ff1d3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abheaaron</media:title>
		</media:content>
	</item>
		<item>
		<title>Transaksi Penjualan</title>
		<link>http://abheaaron.wordpress.com/2010/06/06/transaksi-penjualan/</link>
		<comments>http://abheaaron.wordpress.com/2010/06/06/transaksi-penjualan/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 12:03:28 +0000</pubDate>
		<dc:creator>abheaaron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://abheaaron.wordpress.com/?p=37</guid>
		<description><![CDATA[public static void main(String[] args)throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[][] Barang = new String[10][4]; int[][] Penjualan = new int[100][2]; String strX=null; String strX2=null; String InputExit=null; int counterX=0; int counterX2=0; int counter=0; int jumlah=0; int Total=0; do {      if(counterX&#60;=Barang.length) {              System.out.println(&#8220;\n================================&#8221;); System.out.println(&#8220;       Input Data Barang     &#8220;); System.out.println(&#8220;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;&#8221;); System.out.print(&#8220;Masukkan data ID Barang    : [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=37&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>public static void main(String[] args)throws IOException {</p>
<p>BufferedReader br = new BufferedReader(new InputStreamReader(System.in));</p>
<p>String[][] Barang = new String[10][4];</p>
<p>int[][] Penjualan = new int[100][2];</p>
<p>String strX=null;</p>
<p>String strX2=null;</p>
<p>String InputExit=null;</p>
<p>int counterX=0;</p>
<p>int counterX2=0;</p>
<p>int counter=0;</p>
<p>int jumlah=0;</p>
<p>int Total=0;</p>
<p>do</p>
<p>{      if(counterX&lt;=Barang.length)</p>
<p>{              System.out.println(&#8220;\n================================&#8221;);</p>
<p>System.out.println(&#8220;       Input Data Barang     &#8220;);</p>
<p>System.out.println(&#8220;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;&#8221;);</p>
<p>System.out.print(&#8220;Masukkan data ID Barang    : &#8220;);</p>
<p>Barang[counterX][0]=br.readLine();</p>
<p>System.out.print(&#8220;Masukkan data Nama         : &#8220;);</p>
<p>Barang[counterX][1]=br.readLine();</p>
<p>System.out.print(&#8220;Masukkan data Harga        : &#8220;);</p>
<p>Barang[counterX][2]=br.readLine();</p>
<p>System.out.print(&#8220;Masukkan data Satuan       : &#8220;);</p>
<p>Barang[counterX][3]=br.readLine();</p>
<p>System.out.println(&#8220;================================\n&#8221;);</p>
<p>System.out.print(&#8220;Apakah Anda ingin menginputkan data Barang lagi ? &#8220;);</p>
<p>strX=br.readLine();</p>
<p>counterX+=1;</p>
<p>}else</p>
<p>{              System.out.println(&#8220;================================\n&#8221;);</p>
<p>System.out.println(&#8220;Database sudah penuh&#8221;);</p>
<p>strX=&#8221;n&#8221;;</p>
<p>System.out.println(&#8220;================================\n&#8221;);</p>
<p>}</p>
<p>}while(strX.equals(&#8220;Y&#8221;)||strX.equals(&#8220;y&#8221;));</p>
<p>do{</p>
<p>do</p>
<p>{      if (counterX2 &lt;= Penjualan.length)</p>
<p>{</p>
<p>System.out.println(&#8220;\n================================&#8221;);</p>
<p>System.out.println(&#8220;      Input Penjualan     &#8220;);</p>
<p>System.out.println(&#8220;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;&#8221;);</p>
<p>System.out.print  (&#8220;Masukkan ID Barang :&#8221;);</p>
<p>Penjualan[counterX2][0]=Integer.parseInt(br.readLine());</p>
<p>if (counterX!=0)</p>
<p>{</p>
<p>for (int x=0;x&lt;=counterX-1;x++)</p>
<p>{</p>
<p>if( Integer.parseInt(Barang[x][0])== Penjualan[counterX2][0])</p>
<p>{              System.out.println(&#8220;Nama Barang        : &#8220;+ Barang[x][1]);</p>
<p>System.out.println(&#8220;Harga Barang       : &#8220;+ Barang[x][2]);</p>
<p>System.out.println(&#8220;Satuan Barang      : &#8220;+ Barang[x][3]);</p>
<p>System.out.print  (&#8220;Masukkan Jumlah    : &#8220;);</p>
<p>Penjualan[counterX2][1]=Integer.parseInt(br.readLine());</p>
<p>System.out.println(&#8220;================================\n&#8221;);</p>
<p>System.out.print(&#8220;Apakah Anda ingin memasukkan data Penjualan lagi : &#8220;);</p>
<p>strX2=br.readLine();</p>
<p>counterX2+=1;</p>
<p>break;</p>
<p>}else if(x==counterX-1)</p>
<p>{              System.out.println(&#8220;================================\n&#8221;);</p>
<p>System.out.println(&#8220;         DATA TIDAK ADA         &#8220;);</p>
<p>System.out.println(&#8220;================================\n&#8221;);</p>
<p>}}}</p>
<p>}else</p>
<p>{              System.out.println(&#8220;================================\n&#8221;);</p>
<p>System.out.println(&#8220;Database sudah penuh&#8221;);</p>
<p>strX2=&#8221;n&#8221;;</p>
<p>System.out.println(&#8220;================================\n&#8221;);</p>
<p>}</p>
<p>}while(strX2.equals(&#8220;Y&#8221;)||strX2.equals(&#8220;y&#8221;));</p>
<p>System.out.println(&#8220;\n========================================&#8221;);</p>
<p>System.out.println(&#8220;           Total Penjualan              &#8220;);</p>
<p>System.out.println(&#8220;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-&#8221;);</p>
<p>for(int BanyakDataBarang=0; BanyakDataBarang&lt;=counterX-1; BanyakDataBarang++)</p>
<p>{      System.out.println(&#8220;ID Barang       : &#8220;+ Barang[BanyakDataBarang][0]);</p>
<p>for (int BanyakDataPenjualan=0; BanyakDataPenjualan&lt;=counterX2-1; BanyakDataPenjualan++)</p>
<p>{</p>
<p>if ( Integer.parseInt(Barang[BanyakDataBarang][0])== Penjualan[BanyakDataPenjualan][0])</p>
<p>{</p>
<p>jumlah=jumlah+Penjualan[BanyakDataPenjualan][1];</p>
<p>counter+=1;</p>
<p>}}</p>
<p>System.out.println(&#8220;Nama Barang     : &#8221; + Barang[BanyakDataBarang][1]);</p>
<p>System.out.println(&#8220;Harga Barang    : &#8221; + Barang[BanyakDataBarang][2]);</p>
<p>System.out.println(&#8220;Jumlah Barang   : &#8221; + jumlah);</p>
<p>System.out.println(&#8220;Satuan          : &#8221; + Barang[BanyakDataBarang][3]);</p>
<p>System.out.println(&#8220;Total Penjualan     : &#8221; + (jumlah*Integer.parseInt(Barang[BanyakDataBarang][2])) );</p>
<p>System.out.println(&#8220;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;&#8221;);</p>
<p>Total=(jumlah*Integer.parseInt(Barang[BanyakDataBarang][2]));</p>
<p>jumlah=0;</p>
<p>counter=0;</p>
<p>}</p>
<p>System.out.println(&#8220;Total           : &#8221; + Total );</p>
<p>System.out.println(&#8220;=========================================&#8221;);</p>
<p>System.out.print(&#8220;Apakah anda ingin keluar : &#8220;);</p>
<p>InputExit=br.readLine();</p>
<p>}while(InputExit.equals(&#8220;N&#8221;)||InputExit.equals(&#8220;n&#8221;));</p>
<p>}}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abheaaron.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abheaaron.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abheaaron.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abheaaron.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abheaaron.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abheaaron.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abheaaron.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abheaaron.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abheaaron.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abheaaron.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abheaaron.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abheaaron.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abheaaron.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abheaaron.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=37&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abheaaron.wordpress.com/2010/06/06/transaksi-penjualan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d70d3ba230a040322b798b318e9ff1d3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abheaaron</media:title>
		</media:content>
	</item>
		<item>
		<title>Menentukan Banyaknya pecahan uang</title>
		<link>http://abheaaron.wordpress.com/2010/06/06/menentukan-banyaknya-pecahan-uang/</link>
		<comments>http://abheaaron.wordpress.com/2010/06/06/menentukan-banyaknya-pecahan-uang/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 12:02:01 +0000</pubDate>
		<dc:creator>abheaaron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://abheaaron.wordpress.com/?p=36</guid>
		<description><![CDATA[BufferedReader br= new BufferedReader (new InputStreamReader(System.in)); System.out.print(&#8220;Masukkan Harga Barang : &#8220;); Integer Harga = Integer.parseInt(br.readLine()); Integer Hasil; if (Harga / 100000 &#62;0) {      Hasil = Harga / 100000; System.out.println(&#8220;Seratus Ribu : &#8221; + Hasil ); Harga = Harga % 100000; } if (Harga / 50000 &#62;0) {      Hasil = Harga / 50000; System.out.println(&#8220;Lima Puluh Ribu [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=36&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>BufferedReader br= new BufferedReader (new InputStreamReader(System.in));</p>
<p>System.out.print(&#8220;Masukkan Harga Barang : &#8220;);</p>
<p>Integer Harga = Integer.parseInt(br.readLine());</p>
<p>Integer Hasil;</p>
<p>if (Harga / 100000 &gt;0)</p>
<p>{      Hasil = Harga / 100000;</p>
<p>System.out.println(&#8220;Seratus Ribu : &#8221; + Hasil );</p>
<p>Harga = Harga % 100000;</p>
<p>}</p>
<p>if (Harga / 50000 &gt;0)</p>
<p>{      Hasil = Harga / 50000;</p>
<p>System.out.println(&#8220;Lima Puluh Ribu : &#8221; + Hasil );</p>
<p>Harga = Harga % 50000;</p>
<p>}</p>
<p>if (Harga / 20000 &gt;0)</p>
<p>{      Hasil = Harga / 20000;</p>
<p>System.out.println(&#8220;Dua Puluh Ribu : &#8221; + Hasil );</p>
<p>Harga = Harga % 20000;</p>
<p>}</p>
<p>if (Harga / 10000 &gt;0)</p>
<p>{      Hasil = Harga / 10000;</p>
<p>System.out.println(&#8220;Sepuluh Ribu : &#8221; + Hasil );</p>
<p>Harga = Harga % 10000;</p>
<p>}</p>
<p>if (Harga / 5000 &gt;0)</p>
<p>{      Hasil = Harga / 5000;</p>
<p>System.out.println(&#8220;Lima Ribu : &#8221; + Hasil );</p>
<p>Harga = Harga % 5000;</p>
<p>}</p>
<p>if (Harga / 1000 &gt;0)</p>
<p>{      Hasil = Harga / 1000;</p>
<p>System.out.println(&#8220;Seribu : &#8221; + Hasil );</p>
<p>Harga = Harga % 1000;</p>
<p>}</p>
<p>if (Harga / 500 &gt;0)</p>
<p>{      Hasil = Harga / 500;</p>
<p>System.out.println(&#8220;Lima Ratus : &#8221; + Hasil );</p>
<p>Harga = Harga % 500;</p>
<p>}</p>
<p>if (Harga / 100 &gt;0)</p>
<p>{      Hasil = Harga / 100;</p>
<p>System.out.println(&#8220;Seratus : &#8221; + Hasil );</p>
<p>Harga = Harga % 100;</p>
<p>}</p>
<p>if (Harga / 50 &gt;0)</p>
<p>{      Hasil = Harga / 50;</p>
<p>System.out.println(&#8220;Lima Puluh Rupiah : &#8221; + Hasil );</p>
<p>Harga = Harga % 50;</p>
<p>}}}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abheaaron.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abheaaron.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abheaaron.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abheaaron.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abheaaron.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abheaaron.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abheaaron.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abheaaron.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abheaaron.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abheaaron.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abheaaron.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abheaaron.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abheaaron.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abheaaron.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=36&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abheaaron.wordpress.com/2010/06/06/menentukan-banyaknya-pecahan-uang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d70d3ba230a040322b798b318e9ff1d3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abheaaron</media:title>
		</media:content>
	</item>
		<item>
		<title>Perhitungan Gaji</title>
		<link>http://abheaaron.wordpress.com/2010/06/06/perhitungan-gaji/</link>
		<comments>http://abheaaron.wordpress.com/2010/06/06/perhitungan-gaji/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 12:01:07 +0000</pubDate>
		<dc:creator>abheaaron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://abheaaron.wordpress.com/?p=32</guid>
		<description><![CDATA[public static void main(String[] args) throws IOException { double Bruto; double Pajak; double Take_Home_Pay; BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); System.out.println(&#8220;===============================================&#8221;); System.out.println(&#8220;               Perhitungan Gaji                &#8220;); System.out.println(&#8220;===============================================&#8221;); System.out.print(&#8220;Masukkan Gaji Pokok : &#8220;); double Gaji_Pokok = Double.parseDouble(br.readLine()); System.out.print(&#8220;Masukkan Tunjangan : &#8220;); double Tunjangan = Double.parseDouble(br.readLine()); System.out.print(&#8220;Masukkan Bonus : &#8220;); double Bonus = Double.parseDouble(br.readLine()); Bruto = Gaji_Pokok + [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=32&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>public static void main(String[] args) throws IOException {</p>
<p>double Bruto;</p>
<p>double Pajak;</p>
<p>double Take_Home_Pay;</p>
<p>BufferedReader br = new BufferedReader(new InputStreamReader(System.in));</p>
<p>System.out.println(&#8220;===============================================&#8221;);</p>
<p>System.out.println(&#8220;               Perhitungan Gaji                &#8220;);</p>
<p>System.out.println(&#8220;===============================================&#8221;);</p>
<p>System.out.print(&#8220;Masukkan Gaji Pokok : &#8220;);</p>
<p>double Gaji_Pokok = Double.parseDouble(br.readLine());</p>
<p>System.out.print(&#8220;Masukkan Tunjangan : &#8220;);</p>
<p>double Tunjangan = Double.parseDouble(br.readLine());</p>
<p>System.out.print(&#8220;Masukkan Bonus : &#8220;);</p>
<p>double Bonus = Double.parseDouble(br.readLine());</p>
<p>Bruto = Gaji_Pokok + Tunjangan + Bonus;</p>
<p>System.out.println(&#8220;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8221;);</p>
<p>System.out.println(&#8220;Bruto : &#8221; + Bruto);</p>
<p>if (100000&lt;= Bruto  &amp;&amp; Bruto &lt; 1000000)</p>
<p>{              Pajak = Bruto * 0.05;</p>
<p>System.out.println(&#8220;Pajak : &#8221; + Pajak);</p>
<p>Take_Home_Pay = Bruto &#8211; Pajak;</p>
<p>System.out.println(&#8220;Take Home Pay : &#8221; + Take_Home_Pay);</p>
<p>}</p>
<p>else if (1000000&lt;= Bruto  &amp;&amp; Bruto &lt; 2500000)</p>
<p>{              Pajak = Bruto * 0.1;</p>
<p>System.out.println(&#8220;Pajak : &#8221; + Pajak);</p>
<p>Take_Home_Pay = Bruto &#8211; Pajak;</p>
<p>System.out.println(&#8220;Take Home Pay : &#8221; + Take_Home_Pay);</p>
<p>}</p>
<p>else if (2500000&lt;= Bruto  &amp;&amp; Bruto &lt; 5000000)</p>
<p>{              Pajak = Bruto * 0.2;</p>
<p>System.out.println(&#8220;Pajak : &#8221; + Pajak);</p>
<p>Take_Home_Pay = Bruto &#8211; Pajak;</p>
<p>System.out.println(&#8220;Take Home Pay : &#8221; + Take_Home_Pay);</p>
<p>}</p>
<p>else if (5000000&lt;= Bruto)</p>
<p>{              Pajak = Bruto * 0.3;</p>
<p>System.out.println(&#8220;Pajak : &#8221; + Pajak);</p>
<p>Take_Home_Pay = Bruto &#8211; Pajak;</p>
<p>System.out.println(&#8220;Take Home Pay : &#8221; + Take_Home_Pay);</p>
<p>}</p>
<p>else</p>
<p>System.out.println(&#8220;GAJI POKOK ANDA KURANG DARI 100.000 TIDAK DIKENAI PAJAK&#8221;);</p>
<p>}</p>
<p>}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abheaaron.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abheaaron.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abheaaron.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abheaaron.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abheaaron.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abheaaron.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abheaaron.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abheaaron.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abheaaron.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abheaaron.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abheaaron.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abheaaron.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abheaaron.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abheaaron.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=32&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abheaaron.wordpress.com/2010/06/06/perhitungan-gaji/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d70d3ba230a040322b798b318e9ff1d3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abheaaron</media:title>
		</media:content>
	</item>
		<item>
		<title>Menentukan Password</title>
		<link>http://abheaaron.wordpress.com/2010/06/06/menentukan-password/</link>
		<comments>http://abheaaron.wordpress.com/2010/06/06/menentukan-password/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 12:00:52 +0000</pubDate>
		<dc:creator>abheaaron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://abheaaron.wordpress.com/?p=33</guid>
		<description><![CDATA[public static void main(String[] args) throws IOException { // TODO code application logic here Integer NIM = Integer.parseInt(JOptionPane.showInputDialog(&#8220;Inputkan NIM Anda : &#8220;)); String Nama = JOptionPane.showInputDialog(&#8220;Inputkan Nama Anda : &#8220;); Integer PSWD = (int)(Math.random()*(10000+(99999))); JOptionPane.showMessageDialog(null, &#8220;SELAMAT DATANG, &#8221; + Nama + &#8221; (&#8221; + NIM + &#8220;) \n PASSWORD ANDA : &#8221; + PSWD); } [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=33&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>public static void main(String[] args) throws IOException {</p>
<p>// TODO code application logic here</p>
<p>Integer NIM = Integer.parseInt(JOptionPane.showInputDialog(&#8220;Inputkan NIM Anda : &#8220;));</p>
<p>String Nama = JOptionPane.showInputDialog(&#8220;Inputkan Nama Anda : &#8220;);</p>
<p>Integer PSWD = (int)(Math.random()*(10000+(99999)));</p>
<p>JOptionPane.showMessageDialog(null, &#8220;SELAMAT DATANG, &#8221; + Nama + &#8221; (&#8221; + NIM + &#8220;) \n PASSWORD ANDA : &#8221; + PSWD);</p>
<p>}</p>
<p>}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abheaaron.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abheaaron.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abheaaron.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abheaaron.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abheaaron.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abheaaron.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abheaaron.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abheaaron.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abheaaron.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abheaaron.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abheaaron.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abheaaron.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abheaaron.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abheaaron.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=33&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abheaaron.wordpress.com/2010/06/06/menentukan-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d70d3ba230a040322b798b318e9ff1d3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abheaaron</media:title>
		</media:content>
	</item>
		<item>
		<title>Games Tebak Angka max 5 tebakan</title>
		<link>http://abheaaron.wordpress.com/2010/06/06/games-tebak-angka-max-5-tebakan/</link>
		<comments>http://abheaaron.wordpress.com/2010/06/06/games-tebak-angka-max-5-tebakan/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 11:57:40 +0000</pubDate>
		<dc:creator>abheaaron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://abheaaron.wordpress.com/?p=30</guid>
		<description><![CDATA[public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int[] InputAngka= new int[11]; int x=0; int AngkaRahasia = (int)(Math.random()*((10-0+1)+0)); System.out.println(&#8220;Tebak angka x (angka 0 sampai 10) :&#8221;); do{ if (x&#60;=4) { System.out.print(&#8220;Masukkan Angka Prediksi Anda &#8220;+ (x+1) +&#8221;: &#8220;); InputAngka[x]= Integer.parseInt(br.readLine()); if (AngkaRahasia!=InputAngka[x]) { System.out.println(&#8220;Prediksi Anda SALAH&#8221;); }else { System.out.println(&#8220;Prediksi [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=30&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>public static void main(String[] args) throws IOException {</p>
<p>BufferedReader br = new BufferedReader(new InputStreamReader(System.in));</p>
<p>int[] InputAngka= new int[11];</p>
<p>int x=0;</p>
<p>int AngkaRahasia = (int)(Math.random()*((10-0+1)+0));</p>
<p>System.out.println(&#8220;Tebak angka x (angka 0 sampai 10) :&#8221;);</p>
<p>do{</p>
<p>if (x&lt;=4)</p>
<p>{</p>
<p>System.out.print(&#8220;Masukkan Angka Prediksi Anda &#8220;+ (x+1) +&#8221;: &#8220;);</p>
<p>InputAngka[x]= Integer.parseInt(br.readLine());</p>
<p>if (AngkaRahasia!=InputAngka[x])</p>
<p>{</p>
<p>System.out.println(&#8220;Prediksi Anda SALAH&#8221;);</p>
<p>}else</p>
<p>{</p>
<p>System.out.println(&#8220;Prediksi Anda Benar&#8221;);</p>
<p>System.out.println(&#8220;Angka rahasia : &#8221; + AngkaRahasia);</p>
<p>System.out.println(&#8220;Prediksi Anda&#8221;);</p>
<p>for (int y=0;y&lt;=x;y++)</p>
<p>{</p>
<p>System.out.print(InputAngka[y]+&#8221;\t&#8221;);</p>
<p>}</p>
<p>}</p>
<p>}else</p>
<p>{              System.out.println(&#8220;Anda KALAH, Maksimal prediksi 5 kali&#8221;);</p>
<p>System.out.println(&#8220;Angka rahasia : &#8221; + AngkaRahasia);</p>
<p>System.out.println(&#8220;Prediksi Anda&#8221;);</p>
<p>for (int y=0;y&lt;=x;y++)</p>
<p>{</p>
<p>System.out.print(InputAngka[y]+&#8221;\t&#8221;);</p>
<p>}</p>
<p>InputAngka[x]=AngkaRahasia;}</p>
<p>x+=1;</p>
<p>}while(AngkaRahasia!=InputAngka[x-1]);</p>
<p>}</p>
<p>}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abheaaron.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abheaaron.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abheaaron.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abheaaron.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abheaaron.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abheaaron.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abheaaron.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abheaaron.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abheaaron.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abheaaron.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abheaaron.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abheaaron.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abheaaron.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abheaaron.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abheaaron.wordpress.com&amp;blog=4139457&amp;post=30&amp;subd=abheaaron&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abheaaron.wordpress.com/2010/06/06/games-tebak-angka-max-5-tebakan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d70d3ba230a040322b798b318e9ff1d3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abheaaron</media:title>
		</media:content>
	</item>
	</channel>
</rss>
