002
22.08.2008, 14:19 Uhr
xXx
Devil
|
Ja und weil es C++ ist, ein std:: davor
C++: |
#include <iostream> // std::cout, std::cin, std::clog, std::cerr #include <cstdlib> // std::system #include <string> // std::string, std::getline
int main() { // read command std::cout << "Befehl: "; std::string command; std::getline(std::cin, command);
// run command if (std::system(command.c_str()) != 0) { std::cerr << "FEHLER: Der Befehl konnte nicht verarbeitet werden!"; return 1; } std::clog << "INFO: Befehl verarbeitet. Beliebige Taste beendet das Programm."; std::cin.get(); }
|
... Dieser Post wurde am 22.08.2008 um 14:19 Uhr von xXx editiert. |