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
- SELAMAT ULTAH KE-25, DELPHI!
- free barcode component for delphi 4,5,6,7
- Daftar Account Free Hosting yang Di-Approve oleh ServerMERDEKA.Com
- Array yang menyenagkan!
- Aplikasi Delphi Konek database layaknya php namun dengan Zeos, Mysql dan TIniFiles Ber Enkripsi
- Menampilkan proses win32
- Contoh Unit Untuk Block Keyboard Keys,.,.,.,.
- DateTimePicker di dalam DBGrid
- Scanning data SMS dr serial
- Dynamic Menu based on MySQL Database Method II
AI Forward

๐ We're thrilled to partner with Alibaba Cloud for "AI Forward - Alibaba Cloud Global Developer Summit 2025" in Jakarta! Join us and explore the future of AI. Register now:
https://int.alibabacloud.com/m/1000400772/
#AlibabaCloud #DeveloperSummit #Jakarta #AIFORWARD
Last Articles
Recent Topic
- PascalTalk #6: (Podcast) Kuliah IT di luar negeri, susah gak sih?
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #5: UX: Research, Design and Engineer
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #4: Obrolan Ringan Seputar IT
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #2: Membuat Sendiri SMART HOME
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #3: RADically Fast and Easy Mobile Apps Development with Delphi
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #1: Pemanfaatan Artificial Intelligence di Masa Covid-19
by LuriDarmawan in Tutorial & Community Project more 4 years ago - Tempat Latihan Posting
by LuriDarmawan in OOT more 5 years ago - Archive
- Looping lagi...
by idhiel in Hal umum tentang Pascal Indonesia more 12 years ago - [ask] koneksi ke ODBC user Dsn saat runtime dengan ado
by halimanh in FireBird more 12 years ago - Validasi menggunakan data tanggal
by mas_kofa in Hal umum tentang Pascal Indonesia more 12 years ago