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

  • SEARCH
  • Home
  • 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 7893629
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T07:10:53+00:00 2026-06-03T07:10:53+00:00

Is it possible to use more than 2 variable in a for loop. i

  • 0

Is it possible to use more than 2 variable in a for loop.

i tried this

for(integer j=0, k=1; j<iSize.size(); j++, k++) {
}

and getting this error
Error: Compile Error: expecting a right parentheses, found ‘,’ at line 188 column 53

Please help me to find the solution.
Thanks
Anu

  • 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-03T07:10:54+00:00Added an answer on June 3, 2026 at 7:10 am

    No, in this case since there is only one condition to end the loop you could write the following:

    integer k = 1;
    for (integer j=0; j < iSize.size(); j++)
    {
        k++;
        //Code goes here
    }
    

    if you actually needed two loops you could do

    for (integer j=0; j < iSize.size(); j++)
    {
        for (integer k = 1; k < Some_Condition; k++)
        {
             //Code goes here
        }
    }
    

    Following either of these suggestions should clear up that error. [Edit] The code you have now is in an incorrect format and the compiler is expecting the closing paren since you can only put 1 statement at the end of the for loop and you have 2.

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

Sidebar

Related Questions

Possible Duplicate: Find and Replace more than 1 word? I want to use jQuery
first time use JTree. Just wondering is it possible to have more than one
Possible Duplicate: Use a variable within a variable? Java Hi this is a general
Just wanted to know if is possible to use mod_rewrite on a single(or more
Is it possible use a MySQL query to perform this kind of check? If
This question is more about C# than it is about log4net (I think). I
I'm wondering if anyone knows if it's possible to assign more than one static
Possible Duplicate: Collection<T> versus List<T> what should you use on your interfaces? Consider this
Is it possible use mod_rewrite to resolve addresses hosted on another server? Say I
I need a control having these features: It should be possible use it in

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.