[求助][讨论]如何使两个for并行执行?
#include <iostream>
using namespace std;
int main()
{
for (int i=0; i<10; i++)
{
cout << "i = " << i << endl;
}
for (int k=0; k<10; k++)
{
cout << "k = " << k << endl;
}
cin.get();
return 0;
}
上面的程序是执行了 for (int i=0; i<10; i++)后再执行for (int k=0; k<10; k++)
有没有办法让他们并行执行.就是说一起执行...