“Печать в Паскале” Ответ

Печать в Паскале

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.
ALeonidou

Pascal Print

WriteLn('Something')
weegee

Ответы похожие на “Печать в Паскале”

Вопросы похожие на “Печать в Паскале”

Больше похожих ответов на “Печать в Паскале” по Pascal

Смотреть популярные ответы по языку

Смотреть другие языки программирования