cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
C++ - recursion for loop - how to get ac
C++ - recursion for loop - how to get access to various iterators
Apr 11, 2018 at 8:25am UTC
pajczur
(3)
for(int i=0; i<matrix[0]; i++)
{
for(int j=0; j<matrix[1]; j++)
{
for(int k=0; k<matrix[2]; k++)
{
dup += nIndex[i] + nIndex[j] + nIndex[k];
}
}
}
Apr 11, 2018 at 11:15am UTC
keskiverto
(10402)
Your other thread is much more descriptive:
http://www.cplusplus.com/forum/beginner/234864/
Please do not double-post.
Topic archived. No new replies allowed.