扫描序言中的列表

发布于 2024-12-08 00:13:13 字数 92 浏览 1 评论 0原文

我想扫描 Prolog 中的列表。 特别是,我想编写一个谓词 scan_list (list),我想让它检查当前元素是否是正整数,如果是则打印它。

谢谢。

I want to scan a list in Prolog.
In particular, I want to write a predicate scan_list (list), and I want to make it check to see if the current element is a positive integer and if so print it.

Thank's.

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

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

发布评论

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

评论(2

Smile简单爱 2024-12-15 00:13:13

如果这是家庭作业,请放心,学习任何编程语言的唯一方法就是练习并思考作业。然而,这里有一个版本可能是您想要的

scan_list([]). 
scan_list([H|T]) :- H > 0,!, print(H),nl,scan_list(T). 
scan_list([_|T]) :- scan_list(T). 

它的工作原理如下:

?- scan_list([1,-2,7,9,0,-1,14]).
1
7
9
14
yes

If this is homework, be assured that the only way to learn any programming language is to practice it and think about the assignments. However, here is a version that might be, what you want

scan_list([]). 
scan_list([H|T]) :- H > 0,!, print(H),nl,scan_list(T). 
scan_list([_|T]) :- scan_list(T). 

It works like that:

?- scan_list([1,-2,7,9,0,-1,14]).
1
7
9
14
yes
硪扪都還晓 2024-12-15 00:13:13

在 SWI-Prolog 中有 include/3,例如您可以编写

?- include(<(0), [1, -2, 7, 9, 0, -1, 14, 0.8], L).
L = [1, 7, 9, 14, 0.8].

(警告:此特定代码接受的数字多于正整数。)

In SWI-Prolog there is include/3, e.g. you can write

?- include(<(0), [1, -2, 7, 9, 0, -1, 14, 0.8], L).
L = [1, 7, 9, 14, 0.8].

(Warning: this particular code accepts more numbers than positive integers.)

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