Şimdi Ara

Bu program nasıl çalışıyor ?

Daha Fazla
Bu Konudaki Kullanıcılar: Daha Az
1 Misafir - 1 Masaüstü
5 sn
1
Cevap
0
Favori
354
Tıklama
Daha Fazla
İstatistik
  • Konu İstatistikleri Yükleniyor
0 oy
Öne Çıkar
Sayfa: 1
Giriş
Mesaj
  • Yarın bu programın nasıl çalıştıgını kaba taslak anlatmam gerek,açıklayabilecek biri varmı kısaca

    #include "stdio.h"
    void hanoi(int,char,char,char);
    void hanoi(int n,char frompeg,char topeg,char auxpeg)
    { if(n==1)
    { printf("\nMove disk 1 from peg %c to peg %c",frompeg,topeg);
    return; }
    hanoi(n-1,frompeg,auxpeg,topeg);
    printf("\nMove disk %d from peg %c to peg %c",n,frompeg,topeg);
    hanoi(n-1,auxpeg,topeg,frompeg);
    }
    main()
    { int n;
    printf("<<< Please, enter the number of disks >>> : ");
    scanf("%d",&n);
    printf("The Tower of Hanoi involves the moves :\n\n");
    hanoi(n,'A','C','B');
    return 0;

    getch();
    }



  • 
Sayfa: 1
- x
Bildirim
mesajınız kopyalandı (ctrl+v) yapıştırmak istediğiniz yere yapıştırabilirsiniz.