int main() { int x = 5; int y = 7; cout << "\n"; cout << x + y << " " << x * y; cout << "\n"; warte_auf_taste(); //Diese Zeile wurde vergessen ;) return0; }
#include <iostream> int main(int argc, char* argv[]) { int x = 5; int y = 7; std::cout << "\n" << x + y << " " << x * y cout << "\n"; std::cin.get(); return0; }