Как осуществить поиск наибольшего из 4 чисел? - Prolog

Узнай цену своей работы

Формулировка задачи:

Есть код на visual prolog 7.5
Листинг программы
  1. implement main
  2. open core
  3. class predicates
  4. max:(integer A,integer B,integer C).
  5. max:(integer D,integer E,integer F,integer G,integer H).
  6. clauses
  7. max(X,Y,X):-X>Y,!.
  8. max(_,Y,Y).
  9. max(A,B,C,D,Max):-max(A,B,MaxAB),max(MaxAB,C,MaxABC),max(MaxABC,D,Max).
  10. end implement main
  11. goal
  12. max(3,5,1,7,Ans).
но он не работает выдает ошибку: main.cl(7,5) error c263 : No clauses for the predicate 'main::run/0' in the class 'main' main.pro(1,11) see also c263 : No clauses for the predicate 'main::run/0' in the class 'main' main.pro(15,5) error c229 : Undeclared identifier 'max/5' В чем проблема? Кто может помочь?

Решение задачи: «Как осуществить поиск наибольшего из 4 чисел?»

textual
Листинг программы
  1. implement main
  2.     open core
  3.  
  4. class predicates
  5.     max2:(integer A,integer B,integer C) procedure(i,i,o).
  6. clauses
  7.     max2(X,Y,X):-X>Y,!.
  8.     max2(_,Y,Y).
  9.  
  10. class predicates
  11.     max:(integer D,integer E,integer F,integer G,integer H) procedure(i,i,i,i,o).
  12. clauses
  13.     max(A,B,C,D,Max):-max2(A,B,MaxAB),max2(MaxAB,C,MaxABC),max2(MaxABC,D,Max).
  14.  
  15. clauses
  16.     run() :-
  17.         max(3,5,1,7,Ans),
  18.         console::write(Ans),
  19.         console::nl,
  20.         console::write("Нажмите Enter.."),
  21.         _ = console::readLine().
  22.  
  23. end implement main
  24.  
  25. goal
  26.     console::run(main::run).

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

10   голосов , оценка 4.2 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы