素数 prolog lisp编写

这篇博客探讨了如何使用Prolog和Lisp编程语言实现素数检测。isPrime函数被定义,当输入大于等于2的整数N时,返回'prime'如果N是素数,否则返回由N的质因数组成的列表。示例展示了如何查询11和20的素数状态。文章提示先编写返回所有因子的版本,然后优化为只返回质因数。
摘要由CSDN通过智能技术生成

素数 prolog lisp编写

  isPrime(N, Answer)

  Given an integer N >= 2:
    Answer = prime               iff  N is prime
    Answer = composite(Factors)  iff  N is composite, with *prime* factors Factors

  Examples:
    ?- isPrime(11, Answer).
    Answer = prime
    ?- isPrime(20, Answer).
    Answer = composite([2, 5])     % The factors of 20 are: 2, 4, 5, 10.
                                   % The *prime* factors of 20 are: 2, 5.

   Replace the word "change_this" in the rules below.
   
   Hint: You should return the *prime* factors (not all of the factors),
         but it may be useful to first write a version of isPrime
           that returns all of the factors,
         complete question Q2b,
         and then return to this question.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值