int main()
{
using namespace std;
for (int i = 0; i < 3; i++ )
{
cout << endl << endl;
if (i == 1) {
continue;
cout << "我是 continue";
}
else
cout << " i = " << i << endl;
cout << " i *i = " << i *i << endl;
cout << " 输出 continue了没 i = " << i << endl;
}
cout << endl ;
system("pause");
}