19 lines
197 B
C++
19 lines
197 B
C++
|
|
||
|
#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;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|