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 8451969
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T11:22:59+00:00 2026-06-10T11:22:59+00:00

I wrote the following class: public class TestOne { public static void main(String[] args)

  • 0

I wrote the following class:

  public class TestOne {
     public static void main(String[] args) {
        int count = 0;
        for (int i = 0; i < 100; i++) {
          count++;
        }
        System.out.println(count);
     }
   }

The output is 100.

Then I added a semicolon:

    public class TestOne {
     public static void main(String[] args) {
        int count = 0;
        for (int i = 0; i < 100; i++); {     // <-- Added semicolon
          count++;
        }
        System.out.println(count);
     }
   }

The output is 1.

The result is unbelievable. Why does this added semicolon change the meaning of my program so dramatically?

  • 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-10T11:23:00+00:00Added an answer on June 10, 2026 at 11:23 am

    This is not a bug. The semicolon becomes the only “statement” in the body of your for loop.

    Write this another way to make it easier to see:

    for (int i = 0; i < 100; i++)
        ;
    
    {
        count++;
    }
    

    The block with count++ becomes a bare block with a single statement, which isn’t associated with the for loop at all, because of the semicolon. So this block, and the count++ within it, is only executed once.

    This is syntactically valid java. for (int i = 0; i < 100; i++); is equivalent to:

    for (int i = 0; i < 100; i++)
    { ; } // no statement in the body of the loop.
    

    for loops of this form can be useful because of the side-effects within the loop increment statement or termination condition. For instance, if you wanted to write your own indexOfSpace to find the first index of a space character in a String:

    int idx;
    
    // for loop with no body, just incrementing idx:
    for (idx = 0; string.charAt(idx) != ' '; idx++);
    
    // now idx will point to the index of the ' '
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wrote the following code: public class A { protected string Howdy = "Howdy!";
i have wrote the following polymorphic code: public abstract class A { readonly int
I wrote the following C++ program class MyClass { public: int i; int j;
I wrote the following code: class MyObjectHolder { public: std::vector<int> getMyObject() const { return
I wrote the following program #include <iostream> template<typename C, typename Res, typename... Args> class
I wrote following function void validateUser(void) { string uName; string uPassword; char c; map
I wrote the following method. public T GetByID(int id) { var dbcontext = DB;
I wrote the following code: #include <iostream> class A { public: A(){ std::cout <<
I wrote the following view: public class EllipseView extends View { private final Paint
I wrote the following: public class Point { private double _radius , _alpha; public

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.