1

当然这是一个愚蠢的问题,但我自己无法回答。我有以下代码:

%% Ownedby-relationship in monopoly
ownedby(bank,weststation).

%% Account-Value:
account(player1,1500).

%% Prices
price(weststation,200).

%% Buy an estate in monopoly
buy(X,Y):-
    ownedby(bank,X),
    !,
    retract(ownedby(bank, X)),
    assert(ownedby(Y,X)),
    price(X,Price),
    account(Y,Accountold),
    retract(account(Y,Accountold)),
    assert(account(Y,Accountold-Price)).

%% Example:
buy(player1,weststation).

%% RESULT: 
account(player1,X).
1500-200

所以字符串 1500 和 200 被连接,但没有数字被减去...... :( 什么原因?

4

1 回答 1

0

您的规则需要更正

...
NewValue is Accountold-Price,
assert(account(Y,NewValue)).
于 2012-12-14T06:30:36.490 回答