【卡美美源码】【输入密码进入网页源码】【驾校门户网站源码】变速精灵源码_变速精灵v1.5

时间:2024-11-15 11:14:15 分类:简洁邮件源码下载网址 来源:网站源码交流论坛

1.求变速精灵易语言的变速变速卡美美源码源码

变速精灵源码_变速精灵v1.5

求变速精灵易语言的源码

       import java.io.BufferedReader;

       import java.io.IOException;

       import java.io.InputStreamReader;

       public class test

       {

       public static void main(String[] args) throws IOException

       {

       System.out.print("输入圆盘的个数:");

       BufferedReader br=new BufferedReader(new InputStreamReader(System.in));

       String str=br.readLine();

       int m=Integer.parseInt(str);

       System.out.println("移动步骤:");

       hanoi(m,'A','B','C');

       }