Programalama > C++

Etiketler: c++, ile, yaziyi, tersten, yazma

Ort. 0
Puan ver:
#include <iostream.h>
void request(void);
void response(void);
void try_again(void);

int main() {
    cout << "Created By MTDesign - by_muslum@hotmail.com" << endl
    << "THE OPPOSITE OF THE WORD" << endl
    << endl;
    request();
    response();
    try_again();
}

void request(void) {
     char text[100];
     cout << "------------------------" << endl;
     cout << "Please Enter a Word : ";
     cin >> text;
         }
     
void response(void) {
     char text[100];
     int i;
     cout << "Opposite : ";
     for (i=strlen(text); i>=0; i--) {
         cout << text[i];
         }
         cout << "\n------------------------" << endl;
}

void try_again(void) {
     char quest;
     cout << "\nTry Again ... ? E/H : ";
     cin >> quest;
     if (quest=='E' || quest=='e')
     main();
}
     


Yorumlar                 Yorum Yaz
Bu hazır kod'a ilk yorumu siz yapın!
KATEGORİLER
ASP - 240
ASP.NET - 24
C# - 75
C++ - 174
CGI - 8
DELPHI - 247
FLASH - 49
HTML - 536
PASCAL - 246
PERL - 11
PHP - 160
WML - 9
XML - 2
Copyright © 2002 - 2024 Hazır Kod - Tüm Hakları Saklıdır.
Siteden yararlanırken gizlilik ilkelerini okumanızı tavsiye ederiz.
hazirkod.com bir İSOBİL projesidir.