这是我使用递归解决河内塔的Java代码:
/**here is a stack of N disks on the first of three poles (call
them A, B and C) and your job is to move the disks from pole A to pole B without
ever putting a larger disk on top of a smaller disk.*/
public class Hanoi {
public static void main(String[] args) {
playHanoi (2,"A","B","C");
}
//move n disks from position "from" to "to" via "other"
private static void playHanoi(int n, String from , String other, String …Run Code Online (Sandbox Code Playgroud) 我已经搜遍了这个问题并找不到任何解决方案.
这是我得到的错误:
An error occurred while executing batch. Error message is: Method not found: 'System.String Microsoft.SqlServer.Management.Smo.Util.BytesToHexString(Byte[], Int32)'.
Run Code Online (Sandbox Code Playgroud)
在安装Service Pack 2的Windows更新之前,我没有遇到任何问题,我需要在我的课程中使用它.我的导师也不知道如何解决这个问题,而不是重新安装,这是我最后的度假胜地.
我知道这不是我的疑问,因为它们在此更新之前运行完美.
请帮忙