Skrip berikut berguna untuk kawan-kawan yang ingin mengahilkan 'terbilang' dari suatu nilai.
function Terbilang(x:integer):string; const abil : array[0..11] of string[10]=('','satu','dua','tiga', 'empat','lima','enam','tujuh','delapan','sembilan', 'sepuluh','sebelas'); begin if (x < 12) then Result := ' ' + abil[x] else if (x < 20) then Result := Terbilang(x-10) + ' belas' else if (x < 100) then Result := Terbilang(x div 10) + ' puluh' + Terbilang(x mod 10) else if (x < 200) then Result := ' seratus' + Terbilang(x-100) else if (x < 1000) then Result := Terbilang(x div 100) + ' ratus' + Terbilang(x mod 100) else if (x < 2000) then Result := ' seribu' + Terbilang(x-1000) else if (x < 1000000) then Result := Terbilang(x div 1000) + ' ribu' + Terbilang(x mod 1000) else if (x < 1000000000) then Result := Terbilang(x div 1000000) + ' juta' + Terbilang(x mod 1000000); end; |
selamat mencoba.
referensi:
http://delphi-id.org/dpr/index.php?name=PNphpBB2&file=viewtopic&t=135#667
Random Articles
- Scanning data SMS dr serial
- The Big Five of Modern Pascal
- Asosiasi Pengembang Software Indonesia, alternatif
- PascalTalk #3: RADically Fast and Easy Mobile Apps Development with Delphi
- Menyembunyikan File dengan Gambar Abstrak
- Rebuild lazarus 2.0.8 dengan fpc 3.2.0 (Win32) - Experimental
- IP Network Scanning List
- Deteksi Perubahan Modus Video (layar)
- Delphi Community Edition - Free
- Referensi Pemrograman Bahasa Pascal dari Tim Pembina TOKI
Last Articles
- Project Group dalam Lazarus
- FastPlaz Database Explorer
- Release: FastPlaz Super Mom v0.12.22
- PascalClass #3: Web Development with Free Pascal
- Makna Pascal di Pascal Indonesia
- Kulgram : Instalasi Lazarus di Perangkat Berbasis ARM
- PascalClass #1: Analisa Database dan Machine Learning
- PascalTalk #6: (Podcast) Kuliah IT di luar negeri, susah gak sih?
- Mengenal OXYGENE – Pascal For .NET
- PascalTalk #5: UX: Research, Design and Engineer
Recent Topic
- PascalTalk #6: (Podcast) Kuliah IT di luar negeri, susah gak sih?
by LuriDarmawan in Tutorial & Community Project more 3 months ago - PascalTalk #5: UX: Research, Design and Engineer
by LuriDarmawan in Tutorial & Community Project more 3 months ago - PascalTalk #4: Obrolan Ringan Seputar IT
by LuriDarmawan in Tutorial & Community Project more 4 months ago - PascalTalk #2: Membuat Sendiri SMART HOME
by LuriDarmawan in Tutorial & Community Project more 4 months ago - PascalTalk #3: RADically Fast and Easy Mobile Apps Development with Delphi
by LuriDarmawan in Tutorial & Community Project more 4 months ago - PascalTalk #1: Pemanfaatan Artificial Intelligence di Masa Covid-19
by LuriDarmawan in Tutorial & Community Project more 4 months ago - Tempat Latihan Posting
by LuriDarmawan in OOT more 1 years ago - Archive
- Looping lagi...
by idhiel in Hal umum tentang Pascal Indonesia more 8 years ago - [ask] koneksi ke ODBC user Dsn saat runtime dengan ado
by halimanh in FireBird more 8 years ago - Validasi menggunakan data tanggal
by mas_kofa in Hal umum tentang Pascal Indonesia more 8 years ago