99 Bottles of Beer/Prolog: Difference between revisions

m
Fixed syntax highlighting and duplicate headers.
(moving code from main task-page to sub-page)
m (Fixed syntax highlighting and duplicate headers.)
 
(2 intermediate revisions by 2 users not shown)
Line 4:
{{collection|99 Bottles of Beer}}
[[99 Bottles of Beer]] done in Prolog-languages
<!--
See [[99 Bottles of Beer/Prolog]]
-->
 
__toc__
 
=={{header|=Prolog}}===
{{works with|SWI Prolog}}
<langsyntaxhighlight lang="prolog">bottles(0):-!.
bottles(X):-
writef('%t bottles of beer on the wall \n',[X]),
Line 21 ⟶ 18:
bottles(XN).
 
:- bottles(99).</langsyntaxhighlight>
 
It is possible to extend the previous version so to handle singular and plurals of the word 'bottle':
An other version that handles plural/not plural conditions.
 
<langsyntaxhighlight lang="prolog">line1bottles(X0):- line2(X),write('no onmore thebottles wallof beer').
bottles(B) :-
dif(B,0), NewB is B - 1,
(
dif(B,1), writef('%t bottles of beer on the wall \n',[B]), writef('%t bottles of beer\n',[B]);
writef('%t bottle of beer on the wall \n',[B]), writef('%t bottle of beer\n',[B])
),
write('Take one down, pass it around\n'),
(
NewB > 1, writef('%t bottles of beer on the wall \n\n',[NewB]);
NewB =:= 1, writef('%t bottle of beer on the wall \n\n',[NewB]);
true
),
bottles(NewB).
 
:- bottles(99).</syntaxhighlight>
 
An otherAnother version that handles plural/not plural conditions.
 
<syntaxhighlight lang="prolog">line1(X):- line2(X),write(' on the wall').
line2(0):- write('no more bottles of beer').
line2(1):- write('1 bottle of beer').
Line 43 ⟶ 59:
bottles(XN).
:- bottles(99).</langsyntaxhighlight>
 
===Visual Prolog===
<syntaxhighlight lang="visual prolog">
implement main
open core, std, console
 
class predicates
bottles : (integer) -> string procedure (i).
 
clauses
bottles(1) = "bottle" :- !.
bottles(_) = "bottles".
 
run():-
init(),
foreach B = downTo(99,1) do
write(B," ",bottles(B), " of beer on the wall,\n"),
write(B," ",bottles(B), " of beer,\n"),
write("Take one down, pass it around,\n"),
write(B-1," ",bottles(B-1)," of beer on the wall.\n\n")
end foreach,
 
succeed().
end implement main
 
goal
mainExe::run(main::run).</syntaxhighlight>
9,482

edits