Prolog - 检查用户输入

发布于 2024-12-04 20:03:13 字数 301 浏览 0 评论 0原文

大家好,

我想知道是否有一种简单的方法来检查用户在 SWI-Prolog 中输入的内容。我所做的如下:

:- read(Term),
   Term = 'A' -> doSomeStuff, !;
   (Term = 'B' -> doOtherStuff, !;
   (Term = 'C' -> doSomething)).

我的目标是当用户输入字符 A 时执行某个操作,当输入是 B 时执行另一个操作,依此类推......但我的代码似乎不起作用。有人能告诉我我做错了什么吗?

Hi folks,

I was wondering if there's a simple way to check what the user typed in in SWI-Prolog. What I do is the following:

:- read(Term),
   Term = 'A' -> doSomeStuff, !;
   (Term = 'B' -> doOtherStuff, !;
   (Term = 'C' -> doSomething)).

My aim is to do a certain action when the user types in the character A, another when the input is B, and so on... But my code seems not to work. could anybody tell me what I'm doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

大姐,你呐 2024-12-11 20:03:14

您的子句中应该有一个标题,例如

do :- read(Term),
    (Term = 'A' -> doA, !;
    (Term = 'B' -> doB, !;
    (Term = 'C' -> doC))).

doA :- writeln('DoA').
doB :- writeln('DoB').
doC :- writeln('DoC').

,Then,调用 ?- do.,然后输入 'A'。 <输入>。

使用简单常量会更容易:

do2 :- read(Term),
    (Term = a -> doA, !;
    (Term = b -> doB, !;
    (Term = c -> doC))).

然后,调用 ?- do2.,并输入 a。 <输入>。

You should have a head in your clause, e.g.

do :- read(Term),
    (Term = 'A' -> doA, !;
    (Term = 'B' -> doB, !;
    (Term = 'C' -> doC))).

doA :- writeln('DoA').
doB :- writeln('DoB').
doC :- writeln('DoC').

Then, call ?- do., and type 'A'. <enter>.

It is easier to use simple constants:

do2 :- read(Term),
    (Term = a -> doA, !;
    (Term = b -> doB, !;
    (Term = c -> doC))).

Then, call ?- do2., and type a. <enter>.

檐上三寸雪 2024-12-11 20:03:14

如果您在提示符处输入 'A'.,它就会起作用。

It works, if you type 'A'.<Enter> at the prompt.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文