Skocz do zawartości

Grrr


ALT

Rekomendowane odpowiedzi

Się bawię dla przypomnienia Cpp, mam sobie taki kod:

#include <cstdlib>
#include <iostream>

using namespace std;

void cHELP()
{
     cout << "Index of commands\n";
}


int main(int argc, char *argv[])
{
    string large = "nic";
    cout << "Welcome to Operating System Communication System\n";
    cout << "Type HELP for commands\n";
     cin >> large;
    
      if (large == "HELP")
      {
      cHELP();
      large = "nic";  
      }
      else
      {
      cout << "Error: Unknown command!";   
      large = "nic"; 
      }    

    system("PAUSE");
    return EXIT_SUCCESS;
}

 

I nie wiem jak zrobić by jak napisze jakąś komendę to żeby się odrazu nie pojawiało "Klikni cośtam aby zakończyć..."

Odnośnik do komentarza
Udostępnij na innych stronach

Daj to w pętli while:

#include <cstdlib>
#include <iostream>

using namespace std;

void cHELP()
{
     cout << "Index of commands\n";
}


int main(int argc, char *argv[])
{
    string large = "nic";
    cout << "Welcome to Operating System Communication System\n";
    cout << "Type HELP for commands\n";
    while(1)
    {
        cin >> large;
    
        if (large == "HELP")
        {
            cHELP();
            large = "nic";  
        }else{
        if (large == "EXIT")
        {
            break;
        }
        }
        else
        {
            cout << "Error: Unknown command!";   
            large = "nic"; 
        }    
    }
    system("PAUSE");
    return EXIT_SUCCESS;
}

Odnośnik do komentarza
Udostępnij na innych stronach

Jeśli chcesz dodać odpowiedź, zaloguj się lub zarejestruj nowe konto

Jedynie zarejestrowani użytkownicy mogą komentować zawartość tej strony.

Zarejestruj nowe konto

Załóż nowe konto. To bardzo proste!

Zarejestruj się

Zaloguj się

Posiadasz już konto? Zaloguj się poniżej.

Zaloguj się
  • Ostatnio przeglądający   0 użytkowników

    • Brak zarejestrowanych użytkowników przeglądających tę stronę.
×
×
  • Dodaj nową pozycję...