void TestFunction(int i, int nEnd) { static int x = 0; int y = 0; x++; y++; if(i == (nEnd-1)) { cout<<"x="<<x<<endl; cout<<"y="<<y<<endl; } } int main() ...
確定! 回上一頁