3 Ekim 2013 Perşembe

Soru cevap örneği

Sponsorlu Bağlantılar
#include<stdio.h>
#include<stdlib.h>
int main()
{
    char cevap[20],cevap2[2];
    sor:
    tekrar:
    printf("Beni seviyor musun? E - H \n");
    scanf("%s",cevap);
    
    if(cevap[0]=='e' || cevap[0]=='E')
    printf("Bende seni seviyorum :)\n");
    else if(cevap[0]=='h' || cevap[0]=='H')
    printf(":( Peki oyle olsun...\n");
    else 
    goto sor;
    
    
    printf("Devam etmek istiyor musunuz? (e/h)\n");
    scanf("%s",&cevap2);
    if(cevap2[0]=='e' || cevap2[0]=='E')
    printf("Beni seviyor musun? E - H \n"); 
    else if(cevap2[0]=='h' || cevap2[0]=='H')
    printf("Oyun bitti\n");
    else
    goto tekrar;
    
    system("pause");
}
Sponsorlu Bağlantılar

Hiç yorum yok:

Yorum Gönder