program SRP_GAME(input,output);
const
s1='Player one win!';
s2='Player two win!';
s3='No winner.';
var
p1,p2:integer;

procedure init(var x:integer);
var
t:char;
begin
readln(t);
case t of
'S': x:=1;
'R': x:=2;
'P': x:=3;
end;
end;


begin
write('Player one: ');
init(p1);
write('Player two: ');
init(p2);

case p1-p2 of
-2: writeln(s1);
-1: writeln(s2);
0: writeln(s3);
1: writeln(s1);
2: writeln(s2);
end;
end.

and where is the error? what are you trying to accomplish?

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.