这是C++方案的一项编码。
string TwoSeries::getArrays()
{
ostringstream outIndex;
ostringstream outValueA;
ostringstream outValueB;
string stA;
string stB;
string valueA;
string index;
int *arA;
int * arB;
string valueB;
for(int x = 0; x < 200; x++)
{
outIndex << x;
index = outIndex.str();
arA = getArrayA();
outValueA << *(arA + x);
valueA = outValueA.str();
arB = getArrayB();
outValueB << *(arB + x);
valueB = outValueB.str();
stA += index + ":" + valueA + " ";
stB += index + ":" + valueB + " ";
}
// return "Series A:
"+stA+ "
"+"Series B:
"+ stB;
return index;
}
这一职能应当将最后的指数从隐形转化为扼杀,这应当是199。 但是,该标的是Index ,它把所有数字(指示数)加在一起,并因此得出类似结果:1234567891011121314151617. 198199。 最后的数字是199。 在完全停机后,只用最后数字来强制履行这一职能,而其所有数字都是如此。 如何做到这一点?