J2ME: The Complete Reference

Posted by Budi Arieyanto | Posted in | Posted on 00.18

 










Product Details

  • Paperback: 768 pages
  • Publisher: McGraw-Hill/OsborneMedia (February 27, 2003)
  • Language: English
  • ISBN-10: 0072227109
  • ISBN-13: 978-0072227109


Book Description

This comprehensive resource covers J2ME architecture and explains how to build applications and services for cell phones and PDAs with J2ME. You’ll also get details on security, information management, and storage, as well as advanced topics such as Mobile Information Device Profile (MIDP) and Connected Limited Device Configuration (CLDC)
Book Info
Covers the fundamentals as well as advanced topics such as Mobile Information Device Profile (MIDP) and Connected Limited Device Configuration (CLDC). Softcover.
For more books visit this blog daily


Download

Android ebook

Posted by Budi Arieyanto | Posted in | Posted on 00.15

Android 3.0 Animations: Beginner's Guide


Free Download Android ebook pdf + code


Bring your Android applications to life with stunning animations.
  • The first and only book dedicated to creating animations for Android apps.
  • Covers all of the commonly used animation techniques for Android 3.0 and lower versions.
  • A step-by-step guide for learning animation by building fun example applications and games.
Download PDF epub Format book

Download Tutorial

Posted by Budi Arieyanto | Posted in | Posted on 08.42

(ALGORITMA DAN STRUKTUR DATA)
http://www.4shared.com/rar/xURiFZHX/ALGORITMA_DAN_STRUKTUR_DATA.html 

(MATERI E-COMMERCE)
http://www.4shared.com/zip/Tnm5Caja/all_materi_e-commerce.html

(ANALISISI WEB)
hhttp://budiarieyanto.blogspot.com/2012/05/download-tutorial.html

(APLIKASI GRAFIKA KOMPUTER)
http://www.4shared.com/office/WE3rZmHf/APLIKASI_GRAFIKA_KOMPUTER.html

(APLIKASI PETA DENGAN AJAX)
http://www.4shared.com/office/5JOHej1j/APLIKASI_PETA_DENGAN_AJAX.html

(ARITMATIK BUBLE SORT)
http://www.4shared.com/office/KWCRiM3A/aritmatik_bubble_sort.html

My Profil

Posted by Budi Arieyanto | Posted in | Posted on 05.41

Nama Budi Arieyanto
Agama Islam
TTL Bandung, 12 Februari 1990
Pekerjaan         Mahasiswa
Alamat Komp.Permata Hijau A.102 RT02/RW15 Rancaekek Kab.Bandung
Sekolah Uiniversitas Islam Negeri Sunan Gunung Djati Bandung
Telp 0270177001 / 087821743386
Email prez710@gmail.com

prez710@ymail.com

prez710@hotmail.com

prez710@rocketmail.com
website www.prez710.co.cc

www.prez710.freevar.com

www.prez710.freeoda.com

Menentukan Berat badan Ideal

Posted by Budi Arieyanto | Posted in | Posted on 05.16

#include<iostream.h>
#include<conio.h>

void main()

{
 float berat_badan,tinggi_badan,ideal;
 float a,b;

 clrscr();

 cout<<"Masukan Tinggi Badan     = ";cin>>tinggi_badan;
 cout<<"Masukan Berat Badan     = ";cin>>berat_badan;

 ideal = (tinggi_badan-100)-((tinggi_badan-100)*0.1);
 b = berat_badan-ideal;
 a = ideal-berat_badan;

 cout<<"Berat Badan Ideal Anda   = "<<ideal<<" Kg"<<endl;

 if(a>=2)
 {
  cout<<"\n\nBerat Badan Anda Belum Ideal..! "<<endl;
  }
 else if (b<=3)
 {
  cout<<"\n\nBerat Badan Anda Sudah Ideal..! "<<endl;
  }
 else if (a<=3)
 {
  cout<<"\n\nBerat Badan Anda Belum Ideal..! "<<endl;
  }
 else if (b>=2)
 {
  cout<<"\n\nBerat Badan Anda Sudah Ideal..! "<<endl;
  }
 getch();
}

Hasil Clipping Pengolahan Citra.

Posted by Budi Arieyanto | Posted in | Posted on 05.16

#include<iostream.h>
#include<conio.h>

void main()

{
char interval[25];
int nilai,clipping;

clrscr();

cout<<"Hasil Operasi Pengolahan Citra = ";cin>>nilai;
cout<<"====================================="<<endl;
if(nilai>=255)
  {
   clipping=255;
   cout<<"\n\nHasil Sebelum Clipping  = "<<nilai<<endl;
   cout<<"Hasil Clippingnya    = "<<clipping<<endl;
  }
   if(nilai>=0 && nilai<=255)
  {
   clipping=0;
   cout<<"\n\nHasil Sebelum Clipping  = "<<nilai<<endl;
   cout<<"Hasil Clippingnya    = "<<clipping<<endl;
   }

   getch();
}

Mengkonversi Bilangan Bulat Menjadi Angka Romawi

Posted by Budi Arieyanto | Posted in | Posted on 05.13

#include<iostream.h>
#include<conio.h>

void main()

{
int bilangan;
clrscr();

cout<<"masukan Bilangan : ";cin>>bilangan;

if(bilangan==1)
  cout<<"\n\nAngka Romawinya Adalah I.."<<endl;
else if(bilangan==2)
  cout<<"\n\nAngka Romawinya Adalah II.."<<endl;
else if(bilangan==3)
  cout<<"\n\nAngka Romawinya Adalah III.."<<endl;
else if(bilangan==4)
  cout<<"\n\nAngka Romawinya Adalah IV.."<<endl;
else if(bilangan==5)
  cout<<"\n\nAngka Romawinya Adalah V.."<<endl;
else if(bilangan==6)
  cout<<"\n\nAngka Romawinya Adalah VI.."<<endl;
else if(bilangan==7)
  cout<<"\n\nAngka Romawinya Adalah VII.."<<endl;
else if(bilangan==8)
  cout<<"\n\nAngka Romawinya Adalah VIII.."<<endl;
else if(bilangan==9)
  cout<<"\n\nAngka Romawinya Adalah IX.."<<endl;
else if(bilangan==10)
  cout<<"\n\nAngka Romawinya Adalah X.."<<endl;
else
  cout<<"\n\nAnda Salah Memasukan Angka..!"<<endl;
getch();
}