Pascal Writeln

[Solved] Pascal Writeln | Pascal - Code Explorer | yomemimo.com
Question : pascal write

Answered by : andreas-leonidou

Program OutputInPascal;
Var
number : Integer;
Begin //Print and move to next line writeln('Hello World of Pascal!'); //Print without moving to next line write(' => Math fact: '); //Print text and variables and move to next line number := 10; writeln('The double of ',number,' is ', number * 2); //Just move to next line (leave line empty) writeln();
End.

Source : | Last Update : Fri, 20 May 22

Answers related to pascal writeln

Code Explorer Popular Question For Pascal