Click here to Skip to main content
15,867,488 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
<pre>using System;
using System.Collections;
using System.Collections.Generic;
class MainClass {
  public static void Main (string[] args) {
    Queue eleven = new Queue();
    Queue twelve = new Queue();
    Queue others = new Queue();
    string name;  
    string school;
    string gender;
    string year;
    int intVal;
    while(true)
    {
    Console.WriteLine("Name?");
    name = Console.ReadLine();
    Console.WriteLine("School");
    school = Console.ReadLine(); 
    Console.WriteLine("Gender");
    gender = Console.ReadLine();
    Console.WriteLine("Year");
    year= Console.ReadLine();
    intVal = Convert.ToInt32(year);
    if (intVal > 10 && intVal <= 11)
    {
    eleven.Enqueue(intVal); 
    foreach( object obj in eleven)
    Console.WriteLine("year 11: Name: {0}, School: {1}, Gender: {2}" ,name, school, gender);
    }
    if (intVal > 11 && intVal <= 12)
    {
    twelve.Enqueue(intVal);
    foreach( object objj in twelve)
    Console.WriteLine("year 12: Name: {0}, School: {1}, Gender: {2}" ,name, school, gender);
    }
    if(intVal >= 13 || intVal <= 10 )
    {
    others.Enqueue(intVal);
    foreach( object objjj in others)
    Console.WriteLine("Others: Name: {0}, School: {1}, Gender: {2}" ,name, school, gender);
    }
  }
}
}

why is this code everytime i put lets say year 11 stdent and put another year 11 student rather than print 2 different year 11 student it will display the same one twice???? try it out youself..... i can't find any problems in it.

What I have tried:

I do not know theproblem is so do not know what to try.
Posted
Updated 11-Apr-19 18:39pm

1 solution

C#
foreach( object obj in eleven)
Console.WriteLine("year 11: Name: {0}, School: {1}, Gender: {2}" ,name, school, gender);

for each obj in the queue, you print something that is not related to the queue.
----
Learn to indent properly your code, it show its structure and it helps reading and understanding. It also helps spotting structures mistakes.
C#
<pre>using System;
using System.Collections;
using System.Collections.Generic;
class MainClass {
    public static void Main (string[] args) {
        Queue eleven = new Queue();
        Queue twelve = new Queue();
        Queue others = new Queue();
        string name;
        string school;
        string gender;
        string year;
        int intVal;
        while(true)
        {
            Console.WriteLine("Name?");
            name = Console.ReadLine();
            Console.WriteLine("School");
            school = Console.ReadLine();
            Console.WriteLine("Gender");
            gender = Console.ReadLine();
            Console.WriteLine("Year");
            year= Console.ReadLine();
            intVal = Convert.ToInt32(year);
            if (intVal > 10 && intVal <= 11)
            {
                eleven.Enqueue(intVal);
                foreach( object obj in eleven)
                    Console.WriteLine("year 11: Name: {0}, School: {1}, Gender: {2}" ,name, school, gender);
            }
            if (intVal > 11 && intVal <= 12)
            {
                twelve.Enqueue(intVal);
                foreach( object objj in twelve)
                    Console.WriteLine("year 12: Name: {0}, School: {1}, Gender: {2}" ,name, school, gender);
            }
            if(intVal >= 13 || intVal <= 10 )
            {
                others.Enqueue(intVal);
                foreach( object objjj in others)
                    Console.WriteLine("Others: Name: {0}, School: {1}, Gender: {2}" ,name, school, gender);
            }
        }
    }
}

Indentation style - Wikipedia[^]

Professional programmer's editors have this feature and others ones such as parenthesis matching and syntax highlighting.
Notepad++ Home[^]
ultraedit[^]
-----
Your code do not behave the way you expect, or you don't understand why !

There is an almost universal solution: Run your code on debugger step by step, inspect variables.
The debugger is here to show you what your code is doing and your task is to compare with what it should do.
There is no magic in the debugger, it don't know what your code is supposed to do, it don't find bugs, it just help you to by showing you what is going on. When the code don't do what is expected, you are close to a bug.
To see what your code is doing: Just set a breakpoint and see your code performing, the debugger allow you to execute lines 1 by 1 and to inspect variables as it execute.

Debugger - Wikipedia, the free encyclopedia[^]

Mastering Debugging in Visual Studio 2010 - A Beginner's Guide[^]
Basic Debugging with Visual Studio 2010 - YouTube[^]

Debugging C# Code in Visual Studio - YouTube[^]

The debugger is here to only show you what your code is doing and your task is to compare with what it should do.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900