Q&A

  • 질문 콘솔로 프로그램짜기(초보)
콘솔로 그냥 간단한 프로그램 짜는건데...
잘안되네여 고수님들 좀 가르쳐 주세여!!

문제
메뉴를 출력하고 사용자로부터 입력을 받아 선택된 메뉴를 출력하는 프로그램을 작성하시오!

Choose one of the following
apple
orange
banana
peach
Enter your choice here : 사용자 입력(apple)
Your choice is "apple"

제가 콘솔로 짠 소스입니다!!

좀 수정좀 부탁드려요

program Project2;

{$APPTYPE CONSOLE}

uses
  SysUtils,
  System,
  Dialogs,
  StdCtrls;

var
strA: String;
strTemp: String;
A: Integer;
begin
  Write('Choose one of the following. apple   orange   banana   peach '  +#13#10);

  Write('Enter your choice here A: '+#13#10);
  ReadLn(strA);
  A:= StrToInt(strA);

  if (strA = 'apple') then begin
  end
  else if (strA = 'orang') then begin
  end
  else if (strA = 'banana') then begin
  end
  else if (strA = 'peach') then begin
  end;

  Write('Your choice is "strA".');


  ReadLn(strTemp);
  { TODO -oUser -cConsole Main : Insert code here }
end.
2  COMMENTS
  • Profile
    이영주 2008.03.08 11:00
        Writeln('Choose one of the following. apple   orange   banana   peach ');
        //이렇게 하는것이...
        Write('Enter your choice here A: ');
       // 키입력을 기다리려면 줄끝에 커서가 위치하는것이 보기 좋지요.
       // strA 에 입력을 받아...
       // 요기부터
        // 요기까지... ?? 머 하시려고?

        Write('Your choice is "'+strA+'".');
        // 이거슨... 필요없군요. 그져?
  • Profile
    권두혁 2008.03.11 02:34
    program Project2;
    //입력받은 메뉴를 출력
    {$APPTYPE CONSOLE}

    uses
      SysUtils, System, Dialogs, StdCtrls;

    var
    strA: String;
    strTemp: String;
    A: Integer;
    begin
      Writeln('Choose one of the following. apple   orange   banana   peach ');

      Write('Enter your choice here A: ');
      ReadLn(strA);

      Writeln('Your choice is '+strA+'.');
      ReadLn(strA);

      A:= StrToInt(strA);
      if (strA = 'apple') then begin
      end
      else if (strA = 'orang') then begin
      end
      else if (strA = 'banana') then begin
      end
      else if (strA = 'peach') then begin
      end;

      Write('Your choice is "'+strA+'".');

      { TODO -oUser -cConsole Main : Insert code here }
    end.


    이렇게 해결되었습니다!
    이영주님.........
    도와 주셔서 감사합니다!!