Q&A

  • 초보적인 질문인데 답변좀 ^^;;
  result: integer;
implementation

{$R *.DFM}
function TForm1.gameing(x: integer):string;
begin
randomize;
        result := random(100);       <-----┐
        if x = (result mod 2) then   <-----┴이 두 부분에서 에러가 나네요
  >>>>>[Error] Unit1.pas(42): Incompatible types: 'String' and 'Integer'

뭐가 문제인가요???
2  COMMENTS
  • Profile
    성더기 2003.10.17 19:03
    일반적으로 델파이에서 Result값은 재선언 하지 않는 것이 좋습니다
    자동적으로 선언하니까요
    그리고 에러 내용은 function 의 리턴 값 타입은  string으로(gameing:string;) 되어 있는데 result에 integer값을 할당하니깐 나는 에러입니다

  • Profile
    서경복 2003.10.17 21:06
    감사합니다 ^^*