#include <iostream>
#include <cmath>
using namespace std;
int main(int argc, char* argv[])
{
int a=0,b=0;
while (a < 10)
{
cout <<' '<<a;
a++;
}
cout << endl;
while (b++ <10)
{
cout <<' ' <<b ;
}
return 0;
}
P134 b++ <10 是一个完整表达式,因此该表达式末尾是一个顺序点。c++确保副作用(b+1)在程序进入cout之前完成。