Um mal auf die Frage zu antworten...
Soweit ich weiß hat er sich da ein paar Endlosschleifen gebaut:
Code:
for (t=0; t<14; t+2)
{
t1=t*4;
}
müsste soweit ich weiß:
Code:
for (t=0; t<14; t=t+2)
{
t1=t*4;
}
heißen!
Gleiches Prinzip bei der anderen Schleife.
Michael
"Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."