Created the solution_2.cpp
This commit is contained in:
parent
cef8d5be36
commit
4e697ae429
15
units/2023_10_17/solution_2.cpp
Normal file
15
units/2023_10_17/solution_2.cpp
Normal 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;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user