Hanoi question????

Source: Internet
Author: User

#include <stdio.h>
Move (int n,char X,char Y,char z) {
if (n = = 1)
printf ("%c-to-%c", X, Y, z);
Else
{
Move (N,x,z,y);
printf ("%c-to-%c", x, y);
Move (N,Y,X,Z);
}
}
int main (void) {
int n;
printf ("Input diskes number:\n");
scanf ("%d", &n);
printf ("The step to moving%d diskes:\n");
Move (n, ' A ', ' B ', ' C ');
Getch ();
return 0;
}

1. Do not know how to change?

How many steps does it take to write a record of 2.hanoi?

Trouble which big God to change the code for me, is on this basis, do not leave a word for new code, thank you

Hanoi question????

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.