Prolog - 检查用户输入
大家好,
我想知道是否有一种简单的方法来检查用户在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的子句中应该有一个标题,例如
,Then,调用
?- do.
,然后输入'A'。 <输入>。
使用简单常量会更容易:
然后,调用
?- do2.
,并输入a。 <输入>。
You should have a head in your clause, e.g.
Then, call
?- do.
, and type'A'. <enter>
.It is easier to use simple constants:
Then, call
?- do2.
, and typea. <enter>
.如果您在提示符处输入
'A'.
,它就会起作用。It works, if you type
'A'.<Enter>
at the prompt.