本文介绍了如何在Prolog中做I = i + 1之类的事情的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想这样做:
TotalPlayer = TotalPlayer + 1来计算我的功能的玩家总数。
但是prolog不允许更改变量的值。因为我认为在prolog中,一旦变量被绑定,我们就无法改变它的绑定。
那么我怎么能像我们一样将变量的值增加1在java做:i ++
我尝试过:
TotalPlayer = TotalPlayer + 1。
解决方案
I want to do this:
TotalPlayer = TotalPlayer + 1 to cal the total number of players for my function.
but prolog does not allow to change the value for the variable. Because I think in prolog, once a variable is bound, we can't change its binding.
So how can I increment the value of a variable by 1 like we do in java: i++
What I have tried:
TotalPlayer = TotalPlayer + 1 .
解决方案
这篇关于如何在Prolog中做I = i + 1之类的事情的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!