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,927 questions

51,860 answers

573 users

How to create permutations of words without repetition in Pascal

1 Answer

0 votes
program PermutationProgram;

uses
  SysUtils;

procedure PrintPermutations(words: array of string; n: integer);
var
  i, j, k: integer;
begin
  for i := 0 to High(words) do
    for j := 0 to High(words) do
      for k := 0 to High(words) do
        if (i <> j) and (j <> k) and (i <> k) then
        begin
          WriteLn(words[i], ', ', words[j], ', ', words[k]);
        end;
end;

var
  words: array[0..2] of string = ('Pascal', 'Programming', 'Language');
begin
  PrintPermutations(words, Length(words));
end.





(*
run:

Pascal, Programming, Language
Pascal, Language, Programming
Programming, Pascal, Language
Programming, Language, Pascal
Language, Pascal, Programming
Language, Programming, Pascal

*)

 



answered Jan 21, 2025 by avibootz
...