读取变量作为数字和字符串

问题描述 投票:-1回答:1

我想在选择给定的选项(1,2或3)后让Dep_Code读成字符串。我首先在我的第一个程序中将它设置为整数(我认为)并且能够让它读出作为单词给出的选项(Accounts ACC或其他)。但是,它被意外删除了。我已经尝试了各种方法来获得它甚至将Dep_Code设置为字符串,但它不起作用,我不断收到各种错误。顺便说一下,我不熟悉编程所以我知道下面的代码是不正确的...但我希望你们都能提供帮助。谢谢!

REPEAT
      writeln ('Please enter the Department Code:- ');
      writeln;
      writeln ('1. Accounts (ACC)');
      writeln ('2. Human Resources (HR)');
      writeln ('3. Operations (OP)');
      writeln;
      readln (Dep_Code);

      IF Dep_Code = 1 THEN
         Dep_Code := ('Accounts (ACC)')

      ELSE IF Dep_Code = 2 THEN
              Dep_Code := ('Human Resources(HR)')

           ELSE IF Dep_Code = 3 THEN
                   Dep_Code := ('Operations (OP)');
UNTIL ((Dep_Code >= 1) AND (Dep_Code <= 3));
performance freepascal
1个回答
0
投票

这是不可能的。 Pascal是一种严格类型的语言,同时也不能是Integer和string,变量也不能改变类型:

 IF Dep_Code = 1 THEN
     Dep_Code := ('Accounts (ACC)')

但是你根本不需要字符串。保持整数。如果需要,处理各种depts的函数可以编写或定义这样的字符串。您的菜单逻辑不需要字符串变量。

做类似的事情:

procedure HandleAccounts(var Error: Boolean);
begin
  ...
end;

// Skipped the other functions to keep this answer short ...

var
  Dep_Code: Integer;
  AllFine: Boolean;

// Skip the rest of the necessary code ...  

  repeat

    // Skipped the Writelns to keep this answer short ...

    Readln(Dep_Code);
    Error := False;

    case Dep_Code of
      1: HandleAccounts(Error);
      2: HandleHumanResources(Error);
      3: HandleOperations(Error);
    else
      Error := True;
    end;   

  until not Error;

上面,我跳过了一些代码。我猜你可以填空。

© www.soinside.com 2019 - 2024. All rights reserved.