Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8389801
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T18:49:07+00:00 2026-06-09T18:49:07+00:00

We know that, somehow, we use i and j variables in loops very commonly.

  • 0

We know that, somehow, we use i and j variables in loops very commonly. If one need a double for loop, it’s very likely to use something like the following:

for (int i = 0; i < n; i++)
{
    for (int j = 0; j < m; j++)
    {
        // do some stuff...
    }
}

However, if I need a third for loop in these loops, I don’t have any naming convention for the third iterator. I, likely use the following variables: r, k, ii, jj etc…

Is there a naming convention for the third (and so on…) loop’s iterator?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T18:49:09+00:00Added an answer on June 9, 2026 at 6:49 pm

    The most important thing for readability should be obvious names.
    i and j aren’t the most obvious, but may be ok for simple cases. Consider this (admittedly somewhat ill thought out) example;

    static void Main(string[] args)
    {
        for(int i = 0; i < 100; i++)
            for (int j = 0; j < 100; j++)
                for (int k = 0; k < 100; k++)
                    Console.WriteLine("" + i + "-" + j + "-" + k);
    }
    

    vs

    static void Main(string[] args)
    {
        for(int survey = 0; survey < 100; survey++)
            for (int question = 0; question < 100; question++)
                for (int option = 0; option < 100; option++)
                    Console.WriteLine("" + survey + "-" + question + "-" + option);
    }
    

    It’s quite easy to see which makes more sense to read. But while we’re at it, how about making it even more readable while eliminating your naming problem even more;

    static void Main(string[] args)
    {
        for(int survey = 0; survey < 100; survey++)
            PrintSurvey(survey);
    }
    
    private static void PrintSurvey(int survey)
    {
        for (int question = 0; question < 100; question++)
            PrintQuestion(survey, question);
    }
    
    private static void PrintQuestion(int survey, int question)
    {
        for (int option = 0; option < 100; option++)
            PrintOption(survey, question, option);
    }
    
    private static void PrintOption(int survey, int question, int option)
    {
        Console.WriteLine("" + survey + "-" + question + "-" + option);
    }
    

    Maybe overkill/verbose for this simple loop, just wanted to make the point that there are more ways you can deal with the naming problem for nested loops than just finding unique names.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know this is going to be something simple that I'm just missing somehow,
I know that when I use range([start], stop[, step]) or slice([start], stop[, step]) ,
I'm trying to do something that would be similar to turning a url slug-like
I know now, that if I need to get a recource in some static
I am building something for mobile and would like somehow to clear, null objects,
I know that in a subroutine in Perl, it's a very good idea to
I know that Phonegap has an event for back button, but it's only available
I know that this sort of question has been asked here before, but still
I know that if port 443 is open that means the remote host supports
I know that this line of code will make the cell text-wrap: $objPHPExcel->getActiveSheet()->getStyle('D1')->getAlignment()->setWrapText(true); 'D1'

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.