Eine C++ while Schleife:
[spoiler]
#include #include using namespace std; int main(){ cout << "===============" << endl; int x = 1; while(x<=10){ cout << x++ << endl; cout << "===============" << endl; } system("pause"); return 0; }
[/spoiler]


