Created the solution_2.cpp

This commit is contained in:
Mathias Wagner 2023-10-17 09:58:14 +02:00
parent cef8d5be36
commit 4e697ae429
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,15 @@
#include <iostream>
using namespace std;
int main() {
int x, y;
cout << "Bitte einen Wert eingeben: ";
cin >> x;
cout << "Bitte noch einen Wert eingeben: ";
cin >> y;
cout << "Der erste eingegebene Wert betraegt " << x << "!" << endl;
cout << "Der zweite eingegebene Wert betraegt " << y << "!" << endl;
}