主题:while循环
#include <iostream>
using namespace std;
int main()
{
int x=-10;
while(++x)
cout<<x<<endl;
system("pause");
}
请问为什么循环9次 到-1就结束了呢?
不往正数循环了呢? 谢谢!
using namespace std;
int main()
{
int x=-10;
while(++x)
cout<<x<<endl;
system("pause");
}
请问为什么循环9次 到-1就结束了呢?
不往正数循环了呢? 谢谢!