alphabet
Does anybody knows why the system doesn't print out the alphabet ?
/**
* Das Alphabet auf dem Bildschirm ausgeben
*/
publicvoid alphabet()
{
for (char buchstabe='a'; buchstabe <='Z'; ++buchstabe)
System.out.print(buchstabe);
}
Thank you.
Does anybody knows why the system doesn't print out the alphabet ?
/**
* Das Alphabet auf dem Bildschirm ausgeben
*/
publicvoid alphabet()
{
for (char buchstabe='a'; buchstabe <='Z'; ++buchstabe)
System.out.print(buchstabe);
}
Thank you.