diff --git a/main.cpp b/main.cpp index 99ac7e9..6c58c6c 100644 --- a/main.cpp +++ b/main.cpp @@ -16,5 +16,6 @@ main() void print_number(int x){ - std::cout << "Die Zahl ist:" << x << std::endl; + std::cout << "Die Zahl ist: " << x << std::endl; + std::cout << "Das doppelte der Zahl ist: " << x*2 << std::endl; } \ No newline at end of file