From c4921087190fdfe149a8d732db01ce8d7c368d7e Mon Sep 17 00:00:00 2001 From: Arotex Date: Sat, 4 Oct 2025 09:33:31 +0200 Subject: [PATCH] =?UTF-8?q?multipilikation=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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