Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,959 questions

51,901 answers

573 users

How to select random two consecutive digits from a number in Pascal

1 Answer

0 votes
program RandomTwoDigits;

uses
  SysUtils;  { for IntToStr }

function GetRandomTwoDigits(num: LongInt): string;
var
  s: string;
  start: Integer;
begin
  s := IntToStr(num);

  if Length(s) < 2 then
  begin
    GetRandomTwoDigits := 'Error: number must have at least 2 digits';
    Exit;
  end;

  start := Random(Length(s) - 1) + 1;  { Pascal strings are 1-based }
  GetRandomTwoDigits := Copy(s, start, 2);
end;

var
  num: LongInt;
  randomTwo: string;
begin
  Randomize; 

  num := 123456;
  randomTwo := GetRandomTwoDigits(num);

  WriteLn('Random two digits: ', randomTwo);
end.



(*
run:

Random two digits: 45

*)

 



answered Nov 25, 2025 by avibootz
...