TE2/TE2/Eingabe/Eingabe.cpp

19 lines
197 B
C++
Raw Normal View History

2024-09-01 20:28:36 +02:00
#include <iostream>
using namespace std;
int main(){
double x ;
string c ="Noch ein Text";
cout<< "Eingabe zahl"<< endl;
cin >> x ;
cout<< "Die zahl " << x << c << endl;
return 0;
}