Units

A Unit packages shared type declarations, functions, procedures, constants, variables and more for invocation by other units or the main program, equivalent to modules / packages in other programming languages. …

Konversi angka menjadi string

Jika Anda tidak ingin mencetak secara langsung melainkan menggabungkan sejumlah variabel menjadi satu string utuh, Pascal menyediakan tiga metode implementasi utama: Penggabungan dengan fungsi konversi khusus ***ToStr + penggabungan string …

Преобразование чисел в строку

Если вы не хотите выводить данные напрямую, а нужно объединить любое количество переменных в одну строку, в Pascal существует три основных способа реализации: Конкатенация через специализированные функции преобразования ***ToStr + …

Numeric to string conversion

If you don’t want to print directly but concatenate any number of variables into a complete string, Pascal offers three mainstream implementation methods: Concatenation via Dedicated Conversion Functions ***ToStr + …

Output dan Log

Output Konsol Write / WriteLn Untuk mencetak string di Pascal, gunakan prosedur bawaan Write atau WriteLn; WriteLn akan menambahkan karakter ganti baris secara otomatis di bagian akhir teks. Ini adalah …

Вывод и логирование

Вывод в консоль Write / WriteLn Для вывода строк в Pascal используйте встроенные процедуры Write или WriteLn; WriteLn автоматически добавляет перевод строки в конец текста. Это очень гибкая встроенная процедура …

Output & Logging

Console Output Write / WriteLn To print strings in Pascal, use the built-in procedures Write or WriteLn; WriteLn automatically appends a line break at the end. This is an extremely …

Perulangan

Empat jenis perulangan: for / while / repeat / for-in Silakan lihat contoh di bawah terlebih dahulu. Ubah file kode dari pelajaran sebelumnya yaitu mydemo.dpr, lalu ganti ekstensi filenya menjadi …

Цикл

Четыре вида циклов: for / while / repeat / for-in Сначала изучите приведенные ниже примеры. Измените кодовый файл из предыдущего урока mydemo.dpr и замените расширение на pas, получится mydemo.pas. Это …

Loop

Four types of loops: for / while / repeat / for-in Refer to the examples below first. Modify the code file from the previous lesson, mydemo.dpr, and change its extension …