このプログラムを実行しようとすると、無限ループ エラーが発生し続けます。誰でも私を助けて、理由を教えてもらえますか? どんな援助でも大歓迎です。ありがとう!
void Increment(int);
int main()
{
int count = 1;
while(count < 10)
cout << "the number after " << count; //Increment function
Increment(count); //count+1
cout << " is " << count << endl;
return 0;
}
void Increment (int nextNumber)
{
nextNumber++; //parameter +1
}