-6
votes
0answers
34 views

whos good with logic and java? [closed]

Im working on this text based game thats in my bluej textbook... i had some trouble with it during the school year but didn't have the time to put into it until now... Its a pretty boring and stupid ...
0
votes
0answers
30 views

Click countdown application [closed]

I have implemented nothing so far because I am not sure what approach to follow I want to implement something that apple recently did, where the user get rewarded for making request number 50 ...
0
votes
0answers
31 views

A-star logic has its own mind

So I got help earlier for this program crashing, however the cost function has a mind of its own. Its supposed to go through areas that have cost 1, and avoid cost 5 areas as much as possible. It ...
-1
votes
2answers
92 views

Can someone explain the logic behind this? [closed]

So I was browsing trough old interview questions trying to brush up and I came across this problem which I posted below. N friends are playing a game. Each of them has a list of numbers in front of ...
-2
votes
0answers
49 views

Using GUI interactivly [closed]

So I am currently working on a project where we setup a regular Cartesian coordinate plane where there exists little blocks and circles. The little blocks move to find the circles. So I created boxes ...
0
votes
2answers
88 views

Java logic in my code

Okay, so I have this code below and I keep getting run-time errors and I'm thinking its a flaw in the codes logic. I'm trying to use the setOneOtherPicture method to pick a picture and set it into an ...
0
votes
1answer
64 views

Logic flow of rectangle to N-rectangles collision detection

I have a really hard time here figuring out the error in my program. My code only works in 2 rectangles but if I increment number of rectangle, it doesn't work at all. My program flows like this: ...
-1
votes
1answer
38 views

Translate java Logical Operator into R

I need to convert this java statement into R (simplified): return T/F || T/F || T/F ^ T/F; I see that ^ is the "bitwise exclusive OR" in java, but I'm don't completely understand what this would be ...
0
votes
1answer
31 views

Logical help - java regex

I have a string which contains image tags, more than 1. Now I need to regex out the alt= tag. I tried it like this: while (m3.find()) { Pattern p4 = ...
0
votes
1answer
24 views

Strange issue with populating LinkedHashSet

Given the below code, is there some reason that when the final if-else statement steps into the else clause, if I un-comment the two lines of code and comment the "FOOZANAZABAR" and "TESTCAIRO" lines, ...
1
vote
3answers
31 views

What is the Difference between postfix and unary and additive in java

Please help me to understand what is the difference between two "TRUE" and "FALSE" outputs. and also guide me how to get this logic and operator related topics in Oracle Docs. int i = 1; int j = 2; ...
0
votes
2answers
58 views

Find pure number from sentence, not alpnanumeric [closed]

I'm struggling to make Regex that find only number (pure number e.g. 55) from sentence, not alphanumeric(2nd) e.g. in sentence "This is your 1st test, and you got 66 marks" So it should found only ...
0
votes
1answer
36 views

Analyzing the Relationship between Logical Expressions

I am wondering if there are any free/open source libraries (Java would be great) solve the following problem. Assuming {a, b, c} are axioms, I am interested to distinguish 4 kinds of relations. ...
0
votes
2answers
40 views

how to find out price/extra$1000 deposited

The formula that I want to convert in java is Over limit Cash Deposit Fee = [(Input $ cash deposit) – ($ Cash deposits included in plan)] / 1000 * (price/each extra $1000 deposited) The code that I ...
0
votes
1answer
88 views

Connect Four; 2D Array confusion

It is my first time working with GUI. I just cant seem to wrap my head around manipulating with it. I feel like the answer is simple (and I am sorry about that), but I just cant get it into my head. ...
-1
votes
2answers
56 views

How to rotate starting player? [closed]

I'm designing a multiplayer game of poker. I have Human and Computer objects, both which implement a Player interface which contains methods necessary to a poker player. I have an ArrayList of the ...
0
votes
1answer
39 views

update list according to complex logic

I'm having the following code and what I need to do is to add instance (type object) to the item object list(done in the last if) but I need to find full key match . fromProp and toProp are field type ...
-3
votes
2answers
68 views

how to define a class with an instance variable and methods to make it alternate between two values, and to modify it

I am trying to define a class that I could use for my board game. I think I will use the accesor method(getTurn()) as my argument to the board game class. When the game starts, it should give ...
1
vote
8answers
127 views

if statement logic

I've been tasked with creating a small java program for a course i'm doing, and i'm having some issues with the following block of code: System.out.println("Please enter your first name:"); ...
2
votes
1answer
57 views

Compute hashCode for OR logic

I have an object acting as a unique identifier, that has two parameters, we'll call them A and B, and has the following logic: obj1 is equal to obj2 if and only if: obj1.A is equal to obj2.A OR ...
0
votes
1answer
115 views

Default car speed?

I have two buttons in my program. Left Button for brake (decreases speed) and right button for speed (increases speed). When nothing clicked, the car has a default speed. And there is a minimum (0.3) ...
0
votes
4answers
132 views

Java while loop and other

I need help I am new to Java programming and I don't know how to fix my code. I am trying to make a 007 game. I have created the if statements and it isn't looping around. If I add a ! in front of ...
0
votes
2answers
85 views

Need optimized program logic. Word problems1 Sweet1

So I'm creating a roster app for my co-ed softball team. The league rules say that if two guys bat in a row, a girl has to follow. This leads to problems if the guy girl ratio is not balanced, eg if ...
0
votes
0answers
30 views

Multidimensional Arrays and JTextArea

I am fairly new here and I have a quick question. Before I ask it, heres my code: TestGame testObj = new TestGame(); dialogArray = testObj.showDialog(); messageDialog = new ...
0
votes
2answers
80 views

looping logic java [closed]

I'm new to this so go easy! I'm having trouble with Logic. Maybe someone can help me out. I have an arrayList initialized 'abode'. I'm calling a method (area) on each element of the arraylist which ...
-8
votes
1answer
347 views

Java Regular expression for money

I wan to make regex for money that can validate amount with Commas, assumed decimals, negative sign or parentheses, dollar sign, decimals, numeric only. I have used the following expression ...
0
votes
0answers
45 views

Assinging Index No to the Each Row in iterated using <logic:iterate>

how to do the following scenario: Assigning Index No to a check box along with the Each Row in iterated using scenario: adding rows dynamically for the table in jsp
0
votes
2answers
207 views

How to store data in field from database in Spring MVC

I have a problem which is related to logic than a technology, here is a scenario, (I am using Spring + Hibernate) I need to read some data from database to return back to page on every get request, ...
0
votes
4answers
95 views

For loops not executing scan.nextInt correctly

This is a program I am working on for class. After writing most of the program I am now trying to run it and it seems I have a logical error. For some reason the computer will just execute up until ...
0
votes
7answers
139 views

Binary OR operator in java comparing chars [duplicate]

I'm stuck on something simple, basically I want to validate the following public class CharTest { public static void main(String [] args) { char myChar = '('; if (myChar != ...
2
votes
4answers
241 views

Java switch statement to handle two variables?

I'm looking for a way to handle two strings using a single switch, I'm thinking this impossible within Java. Here is some pseudo code of the kind of thing I want to achieve with a switch only. ...
2
votes
1answer
123 views

Array elements not being set correctly

Hi I have an array of bullet objects.I have the bullet objects isAlive var set to false. If I run the code without clicking the space button(which fires the bullet) and print out the array objects ...
0
votes
5answers
89 views

How AND between two operators works?

I have this code, it results '2'. I googled and searched books but found no good answer that helped me. int i = 2; int j = 3; int x = i & j; System.out.println (x); Can anyone can explain.
0
votes
2answers
74 views

Numbers I can get by adding an array in java

I need to get a minimum number that I cant get by adding different numbers of an array. Basically if I have these numbers:1,1,1,5; I can get 1,2,3,5,6... but I cant get 4 so that is the number I am ...
1
vote
8answers
343 views

Checking a string for a palindrome (java) (rookie status) [closed]

I am trying to check to see if, entered a string, that the string is a palindrome if it is display something positive if not... something negative (invalid) I am currently getting the answer invalid ...
16
votes
9answers
1k views

Display 1,2,3,4,5,6,8,10,11 as 1-6,8,10-11

I have this sequence 1,2,3,4,5,6,8,10,11 Expected output is 1-6,8,10-11 This problem is about formatting the sequence in easy readable form I tried with c# and used many if & else. ...
-3
votes
1answer
41 views

Require help on a logical issue

I'm not sure how I can make the final 'else if' statement work correctly. The code in question is currently hashed out and is located at the very bottom of the program. Reading the other 'else if' ...
1
vote
2answers
111 views

Logic to Divide IF-ELSE-ENDIF loop

This is my first question , please correct me if anything is wrong. I have some set of old rules in one of document system , im trying to convert them into new document system. I have lot of IF-ENDIF ...
0
votes
3answers
126 views

Java bit comparison, bitset?

I've got the word 'bitset' stuck in my head as the solution to my problem but I think I might be getting myself confused. I've got a list of hex values that indicate certain conditions, such as: ...
3
votes
1answer
242 views

Hungarian Algorithm: How to cover 0 elements with minimum lines?

I am trying to implement the Hungarian algorithm in Java. I have an NxN cost matrix. I am following this guide step by step. So I have the costMatrix[N][N] and 2 arrays to track covered rows and ...
-4
votes
1answer
56 views

Electron Configuration Logic - Java [closed]

I am trying to create a method (in java) to figure out the Electron Configuration for an element. Ex. He (2nd element: 2 electrons) Electron config: 1s<sup>2</sup> O (8th element 8 ...
3
votes
1answer
82 views

Electron Configuration Logic [closed]

I am trying to create a method (in java) to figure out the Electron Configuration for an element. Ex. He (2nd element: 2 electrons) Electron config: 1s2 O (8th element 8 electrons) Electron ...
0
votes
0answers
47 views

Email Notifications using Jboss/BRMS

I would like to send a notification to a client when a threshold is exceeded for a calculation triggered in Jboss. I was thinking of using the email class to accomplish this ...
3
votes
4answers
117 views

to solve using minimum if else [closed]

Okay guys,I need to solve this problem using minimum if else condition.Let me explain my problem. Suppose there are three String city,state and country.I need to print it in following format ...
1
vote
1answer
264 views

Using Java swing GUI with logic in another class

I would like to use a swing GUI from another class where I have logic for my program. Logic class is class ApsVaje1 in the code below. For example I have two classes GUI and Logic. In GUI I have ...
1
vote
2answers
687 views

Java method to find the rectangle that is the intersection of two rectangles using only left bottom point, width and height?

I have found the solution but wanted to ensure my logic is the most efficient. I feel that there is a better way. I have the (x,y) coordinate of the bottom left corner, height and width of 2 ...
0
votes
7answers
77 views

What Is A Simple Way To Fix These Booleans?

boolean a = true boolean b = true <random code in here, booleans may or may not change> if ((!a || !b) || (!a && !b)){ doSomethingElse(); } This code is not working for me, ...
0
votes
1answer
128 views

implementing logic in java [closed]

I need to write a function which will do the following functionalities I would get a string and a array as input parameters The string would be like one of the following for example catalog ...
1
vote
1answer
82 views

Bitwise operators - precision

Three questions that I seem to be stuck on: Why is the code x & ~077 better than this line of code x & 0177700. Would it be because there is less loss of precision? Why is this code ...
0
votes
2answers
181 views

BNF Grammar for propositional logic ANTLR

I'm trying to create a BNF Grammar in Antlr for propositional logic but I keep getting the error: java.lang.NoSuchFieldError: offendingToken As there is no line number displayed, I don't know where ...

1 2 3 4