在这段代码中,我似乎找不到一个以上会导致无限循环的错误。任何人都可以为我找到这些错误提供的任何帮助将不胜感激。非常感谢大家。
#include <iostream>
#include <iomanip>
#include <cmath>
#include <fstream>
using namespace std;
void Increment(int);
int main ()
{
int count = 1;
while (count < 10)
cout << " The Number After " << count;
Increment(count);
cout << " is "<< count << endl;
return 0;
}
void Increment (int nextNumber)
{
nextNumber++;
}