برنامه برج هانووی
ارسال در تاریخ یادداشت ثابت - دوشنبه 96/6/14 توسط برنامه
سورس کد برنامه برج های هانوی
منتظر برنامه ها و پروژه های اصلی باشید
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#include "stdafx.h"
#include <iostream>
using namespacestd;
voidhanoi(intdisk,intor,intdes)
{
//or=origion, des=destination
intmid=6-(or+des);
if(disk==1)
{
cout<<or<<"->"<<des<<endl;
}
else
{
hanoi(disk-1,or,mid);
cout<<or<<"->"<<des<<endl;
hanoi(disk-1,mid,des);
}
}
intmain(void)
{
intdno,or,des;//number of disks, origion, destination
cout<<"\tHanoi towers, tower 1, tower 2, tower 3 (inputs are numbers 1,2 and 3): "<<endl<<endl;
//avoiding possible mistakes while entering inputs by using do-while loops
do
{
cout<<"Enter the number of disks: ";
cin>>dno;
}
while(dno<1);
do{
cout<<"Enter the origion: ";
cin>>or;
}
while(or>3||or<1);
do
{
cout<<"Enter the destination: ";
cin>>des;
}
while(des>3||des<1||des==or);
hanoi(dno,or,des);
cin.get();
return0;
}
|