汉诺塔问题

/** *汉诺塔问题*/#include <stdio.h>#include <stdlib.h>int main(int argc,char *argv[]){ void hanoi(int n,char one,char two,char three); int n; printf("Please input the number of diskes:"); scanf
相关文章
相关标签/搜索