Search
 
SCRIPT & CODE EXAMPLE
 

PASCAL

pascal repetition

Program PascalWhileLoop;
Var 
number:integer;

begin
    number := 1;

    //WHILE DO Statement - Pre Condition Repetition
    While number <> 0 do    //Run code below, while "number" is not 0
    begin
        Write('Enter an integer number: ');
        readln(number);
    end;
    
    Writeln();
    Writeln('Program Ended');
End.
Comment

PREVIOUS NEXT
Code Example
Pascal :: function in pascal 
Pascal :: print pascal triangle 
Pascal :: turbo pascal online compiler 
Powershell :: powershell display firewall rules name 
Powershell :: install python command line windows 
Powershell :: Auto-open DevTools on every new tab For powershell on Windows 
Gdscript :: godot get root node 
Gdscript :: GAScript - Google Sheets - QBO API - Consent Dialogue Box 
Clojure :: clojure read file 
Lisp :: lisp input 
Assembly :: vmware workstation player disable side channel mitigations 
Assembly :: vba hello world 
Assembly :: discord bot edit message 
Assembly :: dd utility skip 
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
9+8 =