Posts
 
Reputation
Joined
Last Seen
Ranked #261
Strength to Increase Rep
+10
Strength to Decrease Rep
-2
98% Quality Score
Upvotes Received
52
Posts with Upvotes
37
Upvoting Members
41
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
20 Commented Posts
~250.07K People Reached
About Me

Computer lovin' geek.

PC Specs
AMD Phenom II X6 1055T Scythe Ninja II Asus Crosshair IV Formula 4x2GB DDR3 X-25M G2 160GB SSD 2xHD5670…
Favorite Tags
Member Avatar for samaru
Member Avatar for Sunshineserene

It won't shows in rows and numbers because you are using System.out.println all the time: [CODE=java]for (String str : values) { double str_double = Double.parseDouble(str); matrix[x][y]=str_double; System.out.print(matrix[x][y] + " "); }[/CODE] You need to print the columns without a new line, and each time you finish a line (exit the …

Member Avatar for Red_2
-2
19K
Member Avatar for vegaseat

Mrs. Golda Meir was the second elected female leader in modern times (She was the Prime Minister of Israel in 1969). Who was the first?

Member Avatar for vegaseat
11
9K
Member Avatar for Doctor Inferno
Member Avatar for SgtMe
Member Avatar for titan5

[iCODE]FileInputStream fstream[][/iCODE] is not initialized and therefore is null. Before you can write the code in lines 14 and beyond, you have to initialize the array itself: [CODE=java]fstream = new FileInputStream[array size][/CODE] If the array size is dynamic, you might want to consider a list instead.

Member Avatar for peter.lawrey
0
406
Member Avatar for WolfShield
Member Avatar for itzarun
0
1K
Member Avatar for apines

I see that there are many questions here regarding complexity analysis, specifically regarding the Big-O notation of algorithms. I will attempt to shed some light on the subject. I will start with an introduction, after which I will go over some common complexities and last we will solve a few …

Member Avatar for Rashakil Fol
13
1K
Member Avatar for apines

Hello, I am designing for work a testing environment which uses run-time randomly generated data to test our company's product. The problem is as follows: I have an inequality of the sort of x(1+y(1+z(1+p+q))) <= MAX, when x,y,z,p,q,MAX are integers, MAX is given as a method parameter and the method …

Member Avatar for amit28it
0
498
Member Avatar for hwalsh

They mean that you need to declare a new variable to put the username into it, and then when prompting the user for the username, just put it inside the variable, and then you will be able to use it later. [CODE=java] private void printWelcome() { System.out.println("Welcome to the 5th …

Member Avatar for FALL3N
0
345
Member Avatar for fahadyousaf

Let's analyze the code step by step. At the beginning you have 1 loop: [CODE=java] for (i=n; i>0;i=i-1) { y=y+1; } [/CODE] The loop is going from 1 to n, meaning O(n) complexity. Next you have a nested loop [CODE=java] for (i=1;i<=n;i=i*3) { for (j=1;j<=3n;++j) { for(k=0;k<n; k=k+5) { x=x+5; …

Member Avatar for \007
0
457
Member Avatar for shakssage

I recommend that you'll start [URL="http://en.wikipedia.org/wiki/Regular_grammar"]here[/URL], read about regular grammar to give you a direction.

Member Avatar for Saiiiira
0
236
Member Avatar for jake1496
Member Avatar for davidlouis88
-8
857
Member Avatar for robbio87

You see, the forum has such a good effect on you, that you just needed to post the code in order to see how to solve it :)

Member Avatar for ztini
0
213
Member Avatar for steel dr@gon
Member Avatar for junry
0
180
Member Avatar for Robinaofloxley

[QUOTE=rajarajan07;1375887]Edit the image with photoshop especially with patch tool. But the clearance is depends upon the logo color, if it a plain color then easily we can remove the text and add new one. if it is a well defined pattern, tough to do. everything is based on your logo.[/QUOTE] …

Member Avatar for annemendez
0
118
Member Avatar for wizuptech

You have companies that there entire business comes from inventory management systems, so you will have to be more specific about what are you trying to achieve and where do you encounter problems :)

Member Avatar for wizuptech
0
88
Member Avatar for furrykoya
Member Avatar for oneml
0
212
Member Avatar for aquabat

Idea: Read the data from the files into a variable and insert it into the tree. After you try that, see if you can eliminate this variable and insert the data directly into the tree :)

Member Avatar for aquabat
0
5K
Member Avatar for masamune

Are you allowed to use if statements? < > signs? If so, min and max should not be a problem - start there :) What exactly have you learned so far in Java, so I will know what you are allowed to use.

Member Avatar for jon.kiparsky
0
106
Member Avatar for jl.lakhnai
Member Avatar for apines
0
150
Member Avatar for spades0001

Show.Some.Effort. Show us what you have written so far - no one is going to code for you.

Member Avatar for laupkram
0
110
Member Avatar for AlvinLiu

Have you read [URL="http://www.daniweb.com/forums/thread324685.html"]this[/URL] by any chance? :)

Member Avatar for gnanasemantic
0
118
Member Avatar for DallasFan3

Please post the code you have written so far, and explain what is the problem exactly.

Member Avatar for DallasFan3
0
127
Member Avatar for oggiemc

You need to fix the build path the include the other project as well, it's not enough that they are in the same workspace. If you are using eclipse, you need to go to the build path (right click on the project, build path -> configure build path) and add …

Member Avatar for apines
0
221
Member Avatar for ceyesuma

I'm sure that you can use Google to search for existing code. You can write it by yourself, all the information you need is in the [URL="http://download.oracle.com/javase/6/docs/api/java/io/File.html"]File[/URL] class.

Member Avatar for ceyesuma
0
125
Member Avatar for Neo63

Does it work if you change the name of your method to something else besides indexOf ?

Member Avatar for apines
0
137
Member Avatar for lochnessmonster

Take a look [URL="http://kipirvine.com/asm/workbook/floating_tut.htm"]here[/URL]. Think about it - if you have floating points on your computer, then there is a binary representation of it :)

Member Avatar for geojia
0
109
Member Avatar for Codeslinger

Just posting your code is not enough - do you get an exception thrown? compiler errors? unexpected output? Help us to help you.

Member Avatar for apines
0
106
Member Avatar for socheata

In short, show some effort. Problems with code? we'll be happy to help - post the code [I]that you have wrote so far[/I], and tell us exactly what is the problem.

Member Avatar for apines
0
153