Can someone give me code for hangman in watcom pascal please, thank you

Recommended Answers

All 8 Replies

Any effort?
Try to send some of your code,then maybe I can help you.Thank you.

Can someone give me code for hangman in watcom pascal please, thank you

i need to know how to make it so that when the person enters in a letter, it removes that letter from the actual word, that is what i am stuck on.

program Project1;

{$APPTYPE CONSOLE}

uses
  SysUtils;

const ch = 'a';

var user,temp:string;
    i:byte;

begin {main}
  temp:='';
  write('Write me a word:');
  readln(user);{catch the word...}
  {analize it,char by char}
  for i:=1 to length(user)do begin
    if user[i]<>ch then temp:=temp+user[i];
  end;
  writeln('I deleted the whole ''',ch,''' character from that string.');
  writeln('So ,the result is: ',temp);
  readln;
end.

This code doesnt work in watcom pascal, i need to know how it is done in watcom pascal
Like OMG!!!

hey,what is the "watcom" pascal?
I send a delphi code.It is working well in delphi(7 or 2006) as well as in turbo pascal 7.0(1992,I think :) )

watcom is the newer version on turbo
i think
LOLL

another language that i don't know
i couldn't open the help file...so,just in the lister i send you the help file in text format if you need it...good luck

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.