If / Else Expression Logic

Oct 12, 2014

The program i am working on is to take string from the user which should be a phone number then it will return true or false based upon the method that checks to see if it meets the criteria of a certain format if does not it will return false otherwise return true. I am working on a if/else structure that will print this number is valid if it meets the criteria of the method i previously mentioned or return the number is not valid if it is false. the logic of the expression i put in the parentheses of the if/else statement. This is what i have so far:

if(){
System.out.println("The phone number is valid");
}
else {
System.out.println("This isn't a valid phone number");
}

Do i need to compare it based upon the method that checks if it is true?

View Replies


ADVERTISEMENT

Clarification On Array Logic

Mar 3, 2014

explain me the logic behind this array..how this logic flows

min=max=nums[0];
for(int i=1;i<5;i++){
if(nums[i] < min) min=nums[i];
if(nums[i] > mzx) max=nums[i];

//Find the minimum and maximum values in an array.

class Minmax{
public static void main(String[] args){
int nums[] = new int[10];
int min, max;

[code]....

View Replies View Related

Logic Error In Binary Calculator

Oct 31, 2014

int a=Integer.parseInt(jTextField1.getText());
String c = "";
String d="";
if (a>32) {
a-=32;
c+="1";

[Code] ....

I've made this but when i enter a no. than the result comes like eg 9=001001 so i need to delete the zeroes before 1 ....

View Replies View Related

Java Logic For Tagmaker Program

Mar 2, 2014

I've decided to go back to basics and start using pseudocode--but i want to see if my logic is correct.so here's the first program:each delegate to a certain conference must wear a tag showing their name and the organization they represent as shown below:

######################

#### Annual Conference #####

######################

##NAME: ##

######################

##ORGANIZATION: ##

######################

write a class called TagMaker that prints out tags. supply methods to (a) set the name (b) set the organization (c) print tag with the name and organization (d) clear the name and organization (e) print a blank tag. then write a TagTester class to test the TagMaker class. so this is the pseudo code (or logic) that i've come up with for the program:

TagMaker main class:

-Prompt user to enter in first and last name, as well as their organization.

-Read user input for the name and organization.

-Return user input.

-Write conference tag showing the person's information.

-Clear information.

-Print blank tag.

1. i assume i would have to import a few java libraries.

Java Code: java.util.Scanner mh_sh_highlight_all('java'); and Java Code: java.io.*; mh_sh_highlight_all('java');

2. afterwards i would declare the instance variables (private, i assume). static too? so for example: Java Code: private static string firstName mh_sh_highlight_all('java');

3. i'm not sure if this program requires a constructor...being that i'm supposed to clear the program at the end anyway.

4. i create a public class declaring my input variable. example: Java Code: String first = firstName.nextLine(); mh_sh_highlight_all('java');

5. so i then i have to create methods that get/set the user input.

getter/setter example:

Java Code:

public String getFirst(){
return first;
}
public void setFirst(){
this.first = new first;
} mh_sh_highlight_all('java');

6. to print out both tags, would i write most of the code as part of a loop and make an "if" statement where the user input is valid, it prints out a tag with information, and another "if" statement that would automatically clear the buffer?

7. last i would create a tester class that would primarily be responsible for the program's output.

View Replies View Related

Find Out Logic Behind Bubble Sort

Mar 4, 2014

I am trying to find out the logic behind the Bubble sort,

for(a=1; a < size; a++)
for(b=size-1; b >=a ; b--){
if(nums[b-1] > nums[b]){
t=nums[b-1];
nums[b-1] = nums[b];

[code]....

View Replies View Related

Logic Error In Binary Calculator

Oct 31, 2014

int a=Integer.parseInt(jTextField1.getText());
String c = "";
String d="";
if (a>32)

[Code] ....

I've made this but when i enter a no. than the result comes like eg 9=001001 so i need to delete the zeroes before 1.

View Replies View Related

Logic Operators And Variable Number

Jul 7, 2014

if (number % 2 == 0 && number % 3 == 0)
System.out.println(number + " is divisible by 2 and 3");

if (number % 2 == 0 || number % 3 == 0)
System.out.println(number+ " is divisible by 2 or 3");

if (number % 2 == 0 ^ number % 3 == 0)
System.out.println(number + " is divisble by 2 or 3 but not both");

I understand the logic operators and the variable number, what i dont understand is what number % 2 == 0 and number % number == 0 mean. I know that % is a remaining operator and == means equals, i know that = and == are not the same.

View Replies View Related

Logic To Find Adjacency Of Numbers 0 And 1 In Array

Oct 3, 2013

I should mention here that number of elements can be from 1....10'000. And it has to be done as O(N)

I attempted at the problem like so :

public static int adjacencies(int[] A) {
int count = 0;
boolean found = false;
for(int i = 0; i < A.length-1; i++) {
if (A[i] == A[i+1]) {

[Code] .....

To me it looks right and it seems to work.

View Replies View Related

How To Fix Logic Error For Slot Machine Game

Jan 2, 2015

I'm trying to fix this logic error in my slot machine game where no matter what slot combo comes up, it says you have won $10 and proceeds to add that amount to the balance and subtract the bet amount to the balance, even though it is not a winning combo! I've been trying to solve that and when doing so, I commented out Slot1.randNum1 == 0, Slot2.randNum2 ==0, and Slot3.randNum3 ==0 and anything relating to see if that was the problem, and it seemed like it was, because after that, the logic error described above was gone, but in doing so, the loss/win counter didn't increment, nor did the program pick up on the winning combos. However, I do not know why commenting out anything relating to randNum ==0 would cause that.

Here is the code for the processing (as you can see, some parts are commented in attempt to fix the logic error, but right now the code below is for the logic error that keeps on telling that the user has won):

public void askData ()
{
title ();
int betAmount;
while (true)
{
try
{
c.setCursor (3, 1);

[code]....

View Replies View Related

How To Get (web Logic) Server Start Up Arguments In Java

Mar 18, 2014

I'm trying to get the server start up arguments in java using System.getProperty("arg")  but it returns null value.

I set the argument value in server console----server----star tup----argument(-Darg=dev).

Other than this any configurations are required. I used weblogic 10.3.5.

View Replies View Related

Populating ArrayList Using Scanner Class Logic Error

Sep 12, 2014

My code runs and populates an arraylist. However my break statement, while stopping the loop ends up being added to the arraylist. And I'm not sure how to fix this error.

public static void main(String args[]) throws Exception
{
// declaring variables
String input = "";
// creating array list
ArrayList<String> nameList = new ArrayList<String>();

[Code] ....

View Replies View Related

Game Logic - Run Something In Main Method When JButton Is Pressed

Apr 11, 2014

I want to run a few things in my main when a JButton is pressed but can't work out the best way to do it. Here's the code in the main.

public static void main(String[] args) throws FileNotFoundException, ParseException, InterruptedException{
Map m = new Map("defaultMap");
GameLogic g = new GameLogic("defaultMap");
GodsEyeView gev = new GodsEyeView(g, m);
gev.initialRun();

//Want to run this when a button is pressed.
HumanUser h = new HumanUser(g);
playerGUI gui = new playerGUI(h);
gui.run();
gev.run();
}

View Replies View Related

Simple Logic Error In Cipher-shifting Program?

Feb 8, 2015

I was tasked with creating a program that encrypts a line of text (for example, CANDY) by shifting the letters X amount of times. For example, if the user inputs the sentence CANDY and selects a shift of 5, the output would be: HFSID. I got this part working fine. The issue I am having is with the decryption part of the program.

This is simply the reverse of the above, as the user would enter the phrase HFSID, with a shift of 5, and the program would output: CANDY. It works fine, all except for one letter, being the "F" letter. With my code, when I enter the above word to be decrypted it outputs: C[NDY

Obviously, that [ bracket is not an 'A'. I realise the issue falls with the equation, Here is my code:

public class SimpleEncryption {

/**
* @param args the command line arguments
*/
static int answer;
public static void main(String[] args) {
String cipher = JOptionPane.showInputDialog(null, "Please enter a sentence or word that you wish to encode or decode. This program uses"
+ " a basic cipher shift.");

[code]....

View Replies View Related

Object Orientation Logic For Tic Tac Toe Game - Return Winner Or Tie

Jan 28, 2014

I need to find the Winner using Object Orientation logic I have my old logic from my Tic Tac Toe game but it is not Object Orientated. So I want to convert it and add that code to my GUI Tic Tac Toe. I need to return a winner or tie.

View Replies View Related

JSF :: View Layer And Handling Business Logic - Hibernate Without Spring

Jun 30, 2014

I am going to develop a new web application of medium complexity. Right now i am somewhat comfortable with JSF and hibernate. I have never used JSF and hibernate together before.I just wanted to ask if it is good practice to use JSF (for both view layer and handling business logic) and hibernate(for persistence) without spring as a middle layer. The reason why i am asking this is i don't know anything about spring framework.

View Replies View Related

Why Is Logic Not Correct With Method Public Static Boolean ContainsColor

Feb 12, 2015

Why is the logic not correct with the method public static boolean containsColor(String color, Circle [] ca)? It only returns me only false values.

Java Code: public class Circle {
private double radius;
private String color;
public Circle()
{
radius = 1;
color = "red";

[code]....

View Replies View Related

Sort String List Alphabetically With CompareTo Method / If Else Statements - Logic Errors

Oct 6, 2014

I'm having trouble with sorting Strings- 3 strings inputted by user, and I would like to output them in alphabetical order. I've used the str.compareToIgnoreCase method, and then I've tried to loop them through a series of if/ else statements. Everything I've been able to find online (including the forums here) has suggested to use the Comparator class, or to put the strings into an array, and sort list- I really would like to stick with just the String class, and its methods .

The program itself works and compiles, but I am getting logic errors that I have been unable to solve. I'm using IntelliJ Idea, and I've ran it through the built in debugger, about 100+ times (not exaggerating, lol) just to see what it's doing in particular scenarios. For instance, I can get c, a, b, to print out as a,b,c correctly, but a,b,c, will print out as b,a,c.

For me this is kind of like a Sudoku puzzle, or a Rubik's cube! Each time I fix one scenario, it breaks another one, so I don't know if there's a(logic) solution to fix all possible scenarios (abc, acb, bac etc... to all print abc) or if possibly I just need more if statements. I've only pasted in the area where I'm having problems (the if statements). I'm a big fan of the "Next Line" syntax.

(Note: please assume the non relevant content- import Scanner class, main method, etc... I didn't want to paste the entire program.)

System.out.println("Enter the first statement: ");
//input.nextLine();
string1 = input.nextLine();
System.out.println("Enter the second statement: ");
string2 = input.nextLine();
System.out.println("Enter the third statement: ");
string3 = input.nextLine();

[Code] ....

View Replies View Related

Split A Math Expression?

Feb 27, 2015

I have a math expression in a String, that I want to split into 4 pieces as in the following example:

String math = "23+4=27"
int num1 = (23 STORES HERE)
int num2 = (4 STORES HERE)
String operator = (+ STORES HERE)
int answer = (27 STORES HERE)

Note that the operator can be either + - * /

View Replies View Related

How To Check Regular Expression

Aug 25, 2014

I have to match pattern like 76XYYXXXX mean x can be 4or 5 and Y can be 6 or 7. All x and y should be same .i.e. 764664444

View Replies View Related

Illegal Start Of Expression?

May 4, 2015

package com.example;
import com.example.domain.Admin;
import com.example.domain.Director;

[Code]....

View Replies View Related

Evaluating Expression Without Brackets

Feb 3, 2015

I am working on a program to evaluate an expression without brackets using stacks. I am getting the following error :

3+1*2+4
-2.0

Exception in thread "main" java.util.EmptyStackException
at java.util.Stack.peek(Stack.java:102)
at java.util.Stack.pop(Stack.java:84)
at assignment2.Evaluate.main(Evaluate.java:42)

I imported the Stack from java.util.Stack

package assignment2;
import java.util.Scanner;
import java.util.Stack;
public class Evaluate {
public static void main(String[] args) {
Stack<String> ops = new Stack<String>();

[Code] ....

What is causing this error? Does it look like the program should function as intended?

View Replies View Related

Binary Expression Tree

Apr 23, 2015

So everything in my program is working EXCEPT when it comes to calculating the result. I am supposed to evaluate the expression using postorder traversal to return the answer. I am honestly not sure how I would get the postorder traversal to return the answer to the expression since the only thing we really went over was how it re-ordered the expression so that it would end in the postorder/postfix order. Anyways, currently the way that I have the public int evaluate(Node node)method set up is giving me a result of 0, which obviously is not correct.

Here's the section that I'm having issues with:

public int evaluate(Node node){
if(node.isLeaf()){
return Integer.parseInt(node.value);
}
int result = 0;
int left = evaluate(node.left);
int right = evaluate(node.right);

[code]....

View Replies View Related

Illegal Start Of Expression

Jul 30, 2014

How that's possible

import java.util.*;
public class Stars {
public static void main(String[] args) {

line (13);
line (7);
line (35);

System.out.println();
box(10,3);

[Code] ....

View Replies View Related

Simple Regular Expression

Jan 17, 2014

I am currently enrolled in my first Java class. I have taken C# in the past so I've messed with some regular expressions, but I am having trouble finding a good website for Java. Is the syntax the same?I want to create a regular expression to only allow the following characters: c C f F [and any 1-3 digit number].

View Replies View Related

Illegal Start Of Expression

Aug 20, 2014

I am getting the error "Line 54, illegal start of expression". Line 54 is where my "for" starts. It was running ok earlier, now I can't get this error to go away?

public static void main(String[] args) {
double salary;
double commission;
double totalSales;
double annualComp;
double salesTarget;
double incentive;
double accel;
double incentive1;
double notAccel;
double increment;
 
[code]....

View Replies View Related

EL Expression Not Considered - No Error

Dec 15, 2014

So my EL expressions in my jsp are not taken into account in my project. It was working fine when I was using DAO but I switched my project to ORM using the annotations. Using Tomcat in the first place and now JBoss 7.2. Anyway take a look because I really don't understand what I have to do.

When I acces the page I create I get this : OyN3K.jpg while I'm supposed to have a form.

Example my connection jsp:

<title>Connection</title>
</head>
<body>
<form method="POST" action="connection">
<fieldset>
<legend><b>Connection</b></legend>
<c:import url="connectionForm.jsp" var="importedData"/>

[Code] ....

I don't think it's an error in my code but more or less a configuration problem. Btw I don't think it's a problem in my url since when I put a wrong one I've an error telling me it doesn't find the jsp file. That said it's clearly the ${} not being taken into account.

Here is the download link of my project: lab.zip

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved