Map That Shows The Stock Of Some Company
Dec 16, 2014
Is there anyway i could clean this up. ??
package map;
import java.io.*;
import java.util.*;
public class Map {
public static void main(String[]args)throws Exception{
[Code] .....
View Replies
ADVERTISEMENT
Jun 29, 2014
I'm trying to make a stock program that stops the user from entering in textfield and displays a message when stock is low. There's just 2 problem the entered value by the user is only decremented twice then the total stock resets for example with SofaTotal and the if statement doesn't work:
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
import java.text.DecimalFormat;
import java.util.Arrays;
[Code] .....
View Replies
View Related
May 22, 2014
For my jsp file, the code editor shows no error, but the projects window shows an error. I built my project again, cleaned the project, restart eclipse twice and summoned cthulhu. But my project still shows an error. How do I find the cause.
Eclipse project -
JSP file -
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@ taglib prefix="mine" uri="DiceFunctions"%>
[Code] ....
View Replies
View Related
Jul 15, 2014
I try to run this query select distinct TRIM(company) from catalog where company != '' order by company asc; and i get an SQL exception that Column company not found.. When i run this query in MySql workbench it works fine?
View Replies
View Related
Feb 11, 2015
My program is supposed to be used to keep track of inventory for a company. The user is prompted with a menu that asks them which item they want to update and then gives them another menu that allows them to buy, sell, or change the price of the items. For this, I need to have the variable values to change (based on the input of the user), because they are initially set to specific numbers. How would I do this?
Here's the part of my code that is relevant to this question:
balance = 4000.00;
lampQuantity = 400;
lampPrice = 10;
chairQuantity = 250;
chairPrice = 20.00;
deskQuantity = 300;
deskPrice = 100.00;
System.out.println("Current Balance: $" + balance);
System.out.print("1. Lamps " + lampQuantity);
System.out.println(" at $" + lampPrice);
System.out.print("2. Chairs " + chairQuantity);
System.out.println(" at $" + chairPrice);
[Code] .....
View Replies
View Related
Nov 6, 2014
package p6;
import java.util.Scanner;
public class Bill {
public static void main(String[] args) {
Scanner console = new Scanner(System.in);
//final variables Premium Service
final double monthlyChargeP = 25.00;
final double FordayminutesP = 0.10;
[Code] ....
I can't find the syntax on {} my block is highlighted red in my application
View Replies
View Related
Jan 6, 2015
I'm making a stock system for the heck of it,so everything was going great until I hit the loop I am trying to use a for loop to add stock to the stock system,any way the question is maily about loops.How come I cannot declare a variable outside a loop and assign a value to it,for example I can declare as follows and I will not get an error,
for(int i=0;i<10;i++){
System.out.println("example");
}
but in my code(and yes its the only error I get I tested it) I get an error and can only declare and assign a value inside the loop,the reason for this is because I wanted to get the value from another class and use it in the loop ok so heres the code from both classes.
public class mainn{
public static void main(String [] args){
stock first = new stock();
int internal;
internal = first.wanted;
[code]....
View Replies
View Related
Feb 13, 2014
I am doing a multi threading program . I am unable to get the output i want. I have no compilation error . But I cant get the result I , Null exception. This is my Test program
import java.util.*;
public class Test
{
public static void main (String[]args){
int totalShares = 0 ;
double totalCost = 0.0;
String name = "FCS";
double profit = 0.0;
[code]....
View Replies
View Related
Dec 21, 2014
I am doing a program where i have to implement a payroll system into a company for hourly, fixed monthly and commission paid workers. I also have to put the method which i did. the problem is I cant tell if my calculation is wrong or if i am missing a codes some where. The output is not giving me the answer that I was at least expected,
Here is my method:
{
< double total_deduction;>
< total_deduction = gross_pay - deduction;>
< return total_deduction;>
}
< public static double calGrossH(double hours_worked, double pay_rate)>
[Code] .....
I have done a lot researching and have come up with some search with almost the same calculation and I have also asked employees of a company on how they calculated hourly rate, commissions rate and fixed rate for all workers and gotten the same response but for some reason the output is not what it is supposed to output. here is my output.
<
un:>
<please enter the number of employees to be processed 31>
<please enter employee id number 3669>
<please enter employee first name>
[Code] ....
I dont know if I am missing some calculation somewhere or codes been researching and bussing my brains to figure out where is the missing codes or calculation.
View Replies
View Related
Dec 14, 2014
I have a Stock Database query class, it compiles and runs well. Thing is when i enter a user, it shows a user stock information but it repeats showing the same user in the command prompt. the repetition is so fast, you can't see the information. All i wanted was the application to show a user's info, then asks you to enter another user again and so forth. Here is the code
import java.io.*;
import java.sql.*;
import java.util.*;
public class StockDatabaseQuery {
public static void main(String[] args)throws Exception {
String userID;
String firstName;
[Code] ....
View Replies
View Related
Apr 19, 2015
[URL] I made a program that takes 2 stock values by URL tickers, and now I need it to draw a graph with the values for the 2 stocks, so they can be compared visually. So far my idea was to create 2 arraylists that consist of the values for each stock, so that I can draw the graph so that x always move with 1 step, and y0 is the first coordinate, and y1 is the second, and after that y1 is the first, y2 second etc.
View Replies
View Related
Dec 13, 2014
I have Stock Tracker application running, everything works just fine, but when i hit the List Users button, i get an SQL Exception which says "Column bot found". I tried searching for the exception from the internet, but the answers didn't suit my needs. below is the Stock Tracker DB i think the exception might be coming from.
public class StockTrackerDB
{
private Connection con = null;
// Constructor: makes database connection
public StockTrackerDB() throws ClassNotFoundException,SQLException
[Code] ......
View Replies
View Related
Jan 24, 2014
I am trying to write a small program that will calculate the gain and/or loss of the sale of stock. The program will ask the user for the number of shares, the purchase price and the selling price. I am pretty sure that the errors is coming from my calculations in the program.
import java.util.Scanner;
public class investmentCalculator {
public static void main (String[] args) {
Scanner input = new Scanner(System.in);
//User input for number of shares
System.out.print("Enter the number of shares: ");
double shares = input.nextDouble();
[code]....
View Replies
View Related
Apr 21, 2015
I am working on a program that accept input file from user and then from the input file, it count the occurrence for each words then put those result into the output. However, after I run this program, nothing shows up in the output file. It is totally empty...It seems nothing wrong with my code... Here is my code
import java.util.*;
import java.io.*;
public class occurance {
public static void main(String[] args){
String inputFileName="";
String outputFileName="";
if(args.length == 0){
[code]....
View Replies
View Related
Apr 3, 2014
Java Code:
import java.awt.*;
import java.awt.event.*;
public class TestFrame extends Frame implements ActionListener {
static int i;
Frame fr;
Button b1,b2;
Image img[]=new Image[3];
[Code] .....
View Replies
View Related
Jul 1, 2014
I am working on a simple JAVA tutorial, not homework, where employee data is taken from an array and displayed on the console. The data is divided by department, age, name and for the Accounting and Information Systems departments, they are displayed in ascending order by employee age. Everything works except I am not getting the output to the console other than the titles. As I step through the debug, the data clearly is populating the array.
Here is my code:
Company Class:
package SimpleJavaAssignment;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.*;
[Code] .....
Prime Age Checker:
package SimpleJavaAssignment;
import java.math.*;
public class PrimeAgeChecker {
public boolean PrimeAgeChecker(int age) {
BigInteger bi = new BigInteger(String.valueOf(age));
boolean prime = bi.isProbablePrime(10);
return prime;
}
}
View Replies
View Related
Oct 1, 2014
It has no errors in it, but when it runs, it just doesn't show any output at all. Here's my code.
Fuel Class:
public class FuelGauge {
// Setting the gallons and the total amount of gallons
private int gallons;
final static int TotalGallons=15;
public FuelGauge(){
gallons=0;
}
// Initiate the number of gallons
public FuelGauge(int gallons){
[Code] .....
View Replies
View Related
Dec 3, 2014
My code is running via javaw on Windows 7 and XP. It sits in the background waiting for a barcode to be swiped, and then wakes up and asks a question. The trouble is that sometimes (definitely not always), it shows like this:
The code is:
public static void Question(String sTitle,String sLabel) {
JFrame window = new JFrame();
// Create a modal dialog
d = new JDialog(window, sTitle, true);
d.setLayout( new BoxLayout(d.getContentPane(),BoxLayout.Y_AXIS) );
JPanel p1 = new JPanel();
[Code]...
Initially I though it might because I had another thread running which occasionally put up announcement messages in JFrames. But I have taken this out and the problem still persists.
View Replies
View Related
Apr 28, 2014
When I open applications specially high graphics applications, the screen flashes with whole black display with a number of horizontal white lines then after 2 or 3 flashes it opens the desired program. What is the cause, is it low graphics memory, physically damaged screen or ?
View Replies
View Related
Jan 3, 2015
//constructor
class Base
{
Base(int a) {
System.out.println("in base"+a);;
}
}
class Cons extends Base
[Code] .....
View Replies
View Related
Jan 28, 2015
package Program1;
import java.util.Scanner;
public class Source1 {
[Code].....
using netbeans to debug the program but i'm not sure what I did wrong as it doesnt go past test 1
View Replies
View Related
Jan 15, 2014
I am using jdev12c. I tried to create the following class
package view;
import java.awt.Dimension;
import java.util.ListResourceBundle;
public class Resource extends ListResourceBundle {
protected Object[][] getContents() {
return new Object[][] = {
[Code] ....
The code is copied from java documentation ListResourceBundle (Java Platform SE 7 )
Looks like a documentation bug where "=" has to be removed
View Replies
View Related
Apr 13, 2014
Write a program that shows a square frame filled with 100 buttons labeled 1 to 100. Nothing needs to happen when you press any of the buttons. I keep getting errors i am a beginner.
import java.awt.Frame;
import javax.swing.JButton;
import javax.swing.JPanel;
class TestFrame extends Frame {
[Code] ...
View Replies
View Related
Feb 19, 2015
class Brain56
{
public static int[] get()
{
return null;
}
public static void main(String...a)
{
int k=1;
get()[k]++;
}
}
when i remove the increment operator(get()[k]) program shows invalid statement may i know the reason behind it?
View Replies
View Related