-
Began Watching Help with bubble sort.
Hello, I need help!!! I have a program that uses an array for the user to enter in 5 integers. After those integers are added I want to sort them … -
Replied To a Post in Help with bubble sort.
Where you have it now (lines 21-34) is actually workable. The implementation has several problems with it as it stands, but you could leave it right where it is. However, … -
Began Watching Problem: C
1.Input three unique numbers and print the different of the highest and lowest numbers. 2.Input three integers a determine if there are equal numbers . If There are equal numbers, … -
Replied To a Post in Problem: C
I will give one piece of advice, but I don't know if it will make sense to you yet. Anyway, here it goes: When getting numbers from standard input, the … -
Began Watching Levi-Civita Tensor C++ Codes
how to program a levi-civita tensor with 3 by 3 dimensions then prints it after? -
Replied To a Post in Levi-Civita Tensor C++ Codes
First off, you should know before anything else that no one here is going to do the work for you. It is Daniweb policy that we assist you in solving … -
Replied To a Post in Find square of a number with two threads using synchronization
As a bit of speculation, was the assignment by any chance to raise the value to *any* power, not just squaring? That would explain the multi-threading, as the solution could … -
Replied To a Post in Find square of a number with two threads using synchronization
I realize that we seem to be dragging our feet, but the thing is, we are trying to avoid the many people who are trying to get free homework solutions. … -
Began Watching Find square of a number with two threads using synchronization
Hello to all first look this code class Square1 implements Runnable{ int a; public void run(){ a=10; } } class Square2 implements Runnable{ Square1 ob=new Square1(); public void run(){ System.out.println("Square … -
Replied To a Post in Find square of a number with two threads using synchronization
I am afraid you will wait indefinitely if you expect us to do the work for you. While we are here to help you learn, doing your work for you … -
Replied To a Post in how to handle Race Condition in java
The difference is that when you were creating `ob` in `Checking`, were were creating an object in each thread, which meant that they weren't shared between the different threads - … -
Began Watching how to handle Race Condition in java
i write a code of multithreading in which arise an race condition code is below class Race1{ public void show(String s){ try{ System.out.print("["+s); Thread.sleep(1000); }catch(InterruptedException e){ e.printStackTrace(); } System.out.println("]"); } … -
Replied To a Post in how to handle Race Condition in java
I am no expert at Java threading, but I believe the main issue is that you aren't synchronizing on a single object, but rather you have three separate objects of … -
Began Watching Beginner's Assembly Problem
Hi, I was wondering if anyone could clarify what this question is asking for? *Write a program with a loop and indexed addressing that exchanges every pair of values in … -
Replied To a Post in Beginner's Assembly Problem
While Deceptikon's answer is excellent, I would want to ask if you understood what an array really is, in the assembly language you are using. The algorithm won't help you … -
Began Watching start with python
well .. i found out that python is easy language prog. for beginner like me .. but at 1rst am looking for some advices from proff. programers and i found … -
Replied To a Post in start with python
The first thing I would recommend in starting out with Python is finding a good Integrated Development Environment, oe IDE; while IDLE, the one that comes with Python, is passable, … -
Edited Seeking advice on milestone planning
I am currently making out the plans for the milestones for the rest of this year in my long-term projects (Thelema, Assiah, and Alfheim). I was hoping that someone would … -
Created Seeking advice on milestone planning
I am currently making out the plans for the milestones for the rest of this year in my long-term projects (Thelema, Assiah, and Alfheim). I was hoping that someone would … -
Began Watching Seeking advice on milestone planning
I am currently making out the plans for the milestones for the rest of this year in my long-term projects (Thelema, Assiah, and Alfheim). I was hoping that someone would … -
Began Watching Please Help me with this problem.
(The power station problem) A power station is on one side of a river that is one-half mile wide, and a factory is eight miles downstream on the other side … -
Replied To a Post in Please Help me with this problem.
What have you tried so far, and what problems are you having with it? Please include at least enough of your source code to explain any difficulties you are experiencing. … -
Began Watching c++ software issue
hello, i have dev c++ software , when i compile my program it displays an error message showing that "g++ =.exe has stopped working", what is the issue?, how can … -
Replied To a Post in c++ software issue
First off, which version of Dev-C++ do you have? The original Bloodshed Dev-C++ has not been maintained for nearly ten years, and is badly out of date. We recommend the … -
Replied To a Post in Pascal calculator program
That, plus you may want to have a little patience. Fora like this aren't IM or Twitter; they are more like email, where you might have to wait hours or … -
Began Watching Pascal calculator program
Hey guys, I am a new programmer just starting. The assignment my prof gave us has to deal with taking a file (the file is an equation, 5+2-3*2 for example) … -
Replied To a Post in need urgent help for this thing
Hmmn, I gather from the downvote that I went a bit too far in helping this particular person. Either that, or the fact that I did a favor for a … -
Began Watching need urgent help for this thing
For this question, select and name a high-level language you will be discussing. Diagrams might help in your answers. a) Explain how the computer passes control to a subroutine (or … -
Replied To a Post in need urgent help for this thing
My optimism in others' good intentions is battling with my pessimism about [help vampires](http://www.skidmore.edu/~pdwyer/e/eoc/help_vampire.htm) (which the OP is quickly proving herself to be). Still, in the hope of giving her … -
Replied To a Post in "Learning python the hard way" I need help guys.
**tapananand**: Actually, that isn't true. Lists can be unpacked automatically just as tuples can. For example: a, b, c = ['1', '2', '3'] will populate the three variables correctly. The … -
Replied To a Post in Online Compiler in Java
*sigh* Yes, that is true. Looking back on the thread, I have to say I let my enthusiasm for the subject get the better of me. I should have laid … -
Began Watching asaad
hey everybady my name is ahmed i'am a junior asp.net programmer and also an IT helpdesk adminstartor and very happy to share my apps and my problems here -
Replied To a Post in asaad
Good to meet you, though I should point out that such introductions really ought to be posted to the 'Community Introductions' forum, rather than one of the language fora. Since … -
Began Watching "Learning python the hard way" I need help guys.
So I was learning python from "Learn python the hard way" in python3 (my preferance) (I also tried everything in the 2nd python) and when I came across "Parameters, Unpacking, … -
Replied To a Post in "Learning python the hard way" I need help guys.
How are you running the script, and what command line arguments are you invoking the script with? If you are running the script from the command line, you would have … -
Replied To a Post in Online Compiler in Java
**jwenting**: I agree that it certainly looks like that, and for all I know you may be right (the part suggesting it compile more than one language is particularly damning), … -
Began Watching How can i make Raccoon Dog Game by C++ cmd?
I can't make this game now. I don't know how. please help me -
Replied To a Post in How can i make Raccoon Dog Game by C++ cmd?
Could you please give more details about what you need? First off, I expect most of the people here are unfamiliar with the game you refer to, and we'd need … -
Replied To a Post in Online Compiler in Java
That's an excellent point; we may have been reading more into the OP's words than was intended. **m4mukulgarg**: Is your plan to make an existing compiler accessible through a web … -
Replied To a Post in Online Compiler in Java
I hate to say it, but Taywin is right. Your typical Compiler Development course runs a full semester and only gets as far as implementing the most basic language functionality … -
Began Watching Online Compiler in Java
Hi all ive been thinking of a writing a compiler in java for my final year project. I have started to browse the net for help but to be honest … -
Replied To a Post in Online Compiler in Java
First off, as JamesCherrill states, there is a vast amount of tutorials and other resources covering the subject of compiler development around, and while much of it is of questionable … -
Began Watching Dev-C++ Compiler in Windows 8 is too slow
Hello everybody, I need your help to solve my problem. I've just upgraded my Windows from 7 Ultimate to 8, and my Dev-C++ (latest version - 5.7.1) it's compiler is … -
Replied To a Post in Dev-C++ Compiler in Windows 8 is too slow
Actually, if the OP is using 5.7.1, then presumably their talking about the [Orwell fork](http://sourceforge.net/projects/orwelldevcpp/), which *is* maintained and up to date (with gcc 4.8.1). -
Replied To a Post in Foreign key
I'm not sure what to suggest, then, other than to try executing the `ALTER TABLE` command again. Sorry. -
Replied To a Post in Foreign key
What I mean is, it is possible you reversed the two tables, with the result that it related `Branch_and_Branch_Code` to the field in `Animal_Cruelty` rather than the way you wanted … -
Began Watching Ideas for final year project
Hello all. So, I'm in my final year of my B.Tech. in computer science programme and I have to do a project for my final year. The thing is I … -
Replied To a Post in Ideas for final year project
If you need one other suggestion which would cover both computer science and software engineering, and involves an actual open research problem, you might look into the question of compiling … -
Replied To a Post in Foreign key
OK, I am official puzzled. Have you looked to make sure it wasn't attached to `Branch_and_Branch_Code` instead of `Animal_Cruelty`? -
Began Watching IDE
Tell me the best IDE for Python 3.4 version(Windows7 64bit)
The End.