Hi i have to make this work...
//INFO: -eingabeprüfung auf buchstabe/zahl
// -eingabeprüfung auf zahlenbereich
// -wiederholung einbauen vill...
#include <iostream>
using namespace std;
int main()
{
int eingabe;
cout<<"Geben sie eine zahl ein> ";
cin>>eingabe;
if(eingabe>0 && eingabe<13)
{
switch(eingabe)
{
case 1:
cout<<"eins"<<endl;
break;
case 2:
cout<<"zwei"<<endl;
break;
case 3:
cout<<"drei"<<endl;
break;
case 4:
cout<<"vier"<<endl;
break;
case 5:
cout<<"fuenf"<<endl;
break;
case 6:
cout<<"sechs"<<endl;
break;
case 7:
cout<<"sieben"<<endl;
break;
case 8:
cout<<"acht"<<endl;
break;
case 9:
cout<<"neun"<<endl;
break;
case 10:
cout<<"zehn"<<endl;
break;
case 11:
cout<<"elf"<<endl;
break;
}
}
const char *vw[]={"zehn", "drei", "vier", "fuenf", "sech", "sieb", "acht", "neun"};
const char *xy[]={"einund", "zweiund", "dreiund", "vierund", "fuenfund", "sechsund", "siebenund", "achtund", "neunund"};
const char *wx[]={"zwanzig", "dreisig", "vierzig", "fuenfzig", "sechzig", "siebzig", "achtzig", "neunzig"};
int x;
int y;
char anf[10];
char end[10];
if(eingabe>=13 && eingabe<=19)
{
x=eingabe/10;
y=eingabe%10-1;
strcpy(anf, vw[y-1]);
//cout<<anf;
}
could someone plz finish or find me the mistake...