Search
 
SCRIPT & CODE EXAMPLE
 

PASCAL

contoh dasar pascal

program Luas_Lingkaran;
const
    pi=3.14;
var
    r           : real;
    luas        : real;
begin
    write ('Masukan Jari-jari = ');read(r);
    luas:=pi*r*r;
    writeln('Luas     = ',luas:4:2);
end.
Comment

PREVIOUS NEXT
Code Example
Pascal :: pascal area 
Pascal :: pascal cheat sheet for programmers 
Powershell :: windows 10 debloat 
Powershell :: powershell remove node_modules 
Powershell :: download jira attachments powershell 
Gdscript :: godot check if object is in group 
Gdscript :: godot 2d set position to mouse 
Clojure :: Clojure defn 
Abap :: abap alv popup 
Cobol :: google apps script remove nulls array 
Assembly :: program in assembly language to find even numbers from 1 to 10 
Assembly :: django template url with parameter 
Assembly :: undefined reference to `cv::inRange 
Assembly :: bidirectional binding between string Property and integerproperty 
Javascript :: jquery vslidation remove spaces from input 
Javascript :: js on page ready 
Javascript :: open ilnk target js 
Javascript :: refresh window js 
Javascript :: jquery accept only excel file 
Javascript :: check if a variable is undefined jquery 
Javascript :: media query js 
Javascript :: change input placeholder text jquery 
Javascript :: get current url js 
Javascript :: convert to objectid mongoose 
Javascript :: javascript async delay 
Javascript :: javascript refresh page every 30 seconds 
Javascript :: how to change a css variable with javascript 
Javascript :: hide header react navigation 
Javascript :: listing dir by nodejs 
Javascript :: javascript celcius to farenheit 
ADD CONTENT
Topic
Content
Source link
Name
2+6 =