fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.  
  7. int eingabe;
  8.  
  9. cin >> eingabe;
  10.  
  11. system("CLS");
  12.  
  13. cout << "Ausgabe: " << (char)eingabe << endl;
  14.  
  15. system("pause");
  16.  
  17. return 0;
  18. }
  19.  
  20.  
  21.  
  22.  
Success #stdin #stdout #stderr 0s 3464KB
stdin
65
stdout
Ausgabe: A
stderr
sh: 1: CLS: not found
sh: 1: pause: not found