Ja.Ach so, das stimmt natürlich. Meinst du so?
Du meinst, du kannst nur eine Zahl eingeben?Hmm, aber selbst wenn ich anzahln=i entferne, passiert das gleiche.
C++:
#include <iostream>
#include <cmath>
using namespace std;
void main(void)
{
int anzahln;
int i = 0;
double nx[1000], ny[1000];
cout << "Bitte geben sie die Anzahl der x und y Werte ein: " << endl;
do
{
cin >> anzahln;
}while (!(anzahln >= 2 && anzahln <= 1000));
cout << "anzahln ist " << anzahln << endl; //Was gibt diese Zeile aus?
for (i = 0; i < anzahln; i++);
{
cout << "Geben sie die x Werte ein: " << endl;
cin >> nx[i];
cout << "Sie die y Werte ein; " << endl;
cin >> ny[i];
}
}
Was _genau_ ist Eingabe / Ausgabe?
Gruss
cwriter