Payroll Class - Displaying Gross Pay?

Jan 25, 2015

I am having trouble with this displaying the grosspay. Why it is not displaying it right. All I am getting is 0.00 all the time, everything else seems to work great.

// This program shows the payroll coding challenge

public class PayRoll
{
// Constant for the number of employees
public final int NUM_EMPLOYEES = 7;
private double[] employeeID = {5658845, 4520124, 7895122,
8777541, 8451277, 1302850,
7580489};
// To hold hours worked
private int[] hours = new int[NUM_EMPLOYEES];

[Code] ....

View Replies


ADVERTISEMENT

Write A Payroll Class That Uses Arrays As Fields

Apr 26, 2015

I have an assignment to write a Payroll class that uses the following arrays as fields:

-employeeID - An array of seven integers to hold employee identification numbers. The array should be initialized with the following numbers: 5658845 4520125 7895122 8777541 8451277 1302850 7580489
-hours - An array of seven integers to hold the number of hours worked by each employee
-payRate - An array of seven doubles to hold each employees hourly pay rate
-wages - An array of seven doubles to hold each employees gross wages

The class should relate the data in each array through the subscripts. For example, the number in element 0 of the hours array should be the number of hours worked by the employee whose identification number is stored in element 0 of the employeeID array. That same employee's pay rate should be stored in element 0 of the payRate array. In addition to the appropriate accessor and mutator methods, the class should have a method that accepts an employee's identification number as an argument and returns the gross pay for that employee. Demonstrate the class in a complete program that displays each employee number and asks the user to enter that employee's hours and pay rate. It should then display each employee's identification number and gross wages. Input Validation: Do not accept negative values for hours or numbers less than 6.00 for pay rate.

I'm off to a great start, however I'm stumped on how to pass the payrate for each employee into the array, then grab that data in order to calculate the gross wage for each employee and store THAT in its own array. THEN I'll have to output that data to each employee.

Code is shown below.

import java.util.Scanner;
import java.text.DecimalFormat;
public class PayrollProgram {
public static void main(String[] args) {
Scanner userInput = new Scanner(System.in);
DecimalFormat df = new DecimalFormat("0.00");

[code]....

View Replies View Related

Gross Pay Using Array

May 4, 2014

This is my program

import java.util.Scanner;
public class grossPay {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("The Acme Company pays all their employees the same ratee");
Scanner input = new Scanner(System.in);

[Code]....

I know for sure that line 32 is wrong but I don't know why. There is a red line under the brackets.

View Replies View Related

Set And Assign Doubles - String For Gross Pay?

Dec 15, 2014

I'm working with doubles I'm trying to figure out how to set this up so it works?

I'm just stuck on how to set and Assign a double FedTaxWitholding that gets the Fed Tax Withholding = Gross Pay * Fed
Tax Withholding Rate.

Do I need a string for Gross pay?

View Replies View Related

Calling From Class Displaying Like A Receipt

May 7, 2015

Okay so my main problem is that i can't seem to initiate three objects in order for it to display like a recipt in a way. Here is the picture of what the out is suppose to look like : Here are all three files of code

public class IceStand {
//Defining the properties
private String Name;
private String location;

[Code] ...

Output looks like currently

Please enter name of Shaved Ice Stand:
People who love ice cream
Please enter your zip Code:
21236
Enter number of Small (press -1 to stop):
0
Enter numebr of Medium:
1
Enter number of Large:
1
PEOPLE WHO LOVE ICE CREAM
21236

//---//---~------
Price Total

View Replies View Related

Create Payroll Program

Jun 14, 2014

I am now at the beginning trying to teach myself Java :) So far it has been good everything however now I came across the problem where I wanted to create payroll program for myslef based on one of the books I have.Somehow the issue in provided program code gives me the negative values on the salaryNett and valueTax:

Java Code:

import javax.swing.JOptionPane
public class FinnancialApplicationPayroll {
public static void main (String[] args){
String input = JOptionPane.showInputDialog (null, " What is your name");

[code]....

View Replies View Related

Generate RetroActive Salary Case In Payroll Generation

Jan 23, 2014

I am having a doubt about how to fix and what could be the code to generate a retroActive salary case in payroll generation. Upto last year(2013) it was working fine.Now it is 2014 and i am stuck as i am new to java.

The system is computing every value in yearly basis,but the inputs are in monthly basis.

View Replies View Related

Payroll Code - If Input Hours Greater Than 40 Cost To Employer Calculation Goes Wrong

Feb 28, 2014

I think I fixed the first error, but now I'm receiving another error in my Net Pay print statement at the end.

Here is what I'm supposed to receive:

Net Pay: 599.86

Here is my sample run:

run-single:
Enter hourly rate in dollars and cents --> 27.16
Enter number of hours and tenths worked --> 37.9

PAYROLL REPORT
Rate: 27.16
Hours: 37.9

Gross Pay: 1029.36
Federal Tax: 257.34
State Tax: 93.41
FICA: 78.75
Net Pay: 771.86

Employer's FICA contribution: 78.75
Employer's UEI and DI contribution: 20.59
Cost to Employer: 1128.70

Enter hourly rate in dollars and cents -->

Here is my updated code:

package assignmentproject1;
/* CHANGE (FINAL) VAR NAMES, SCAN & VERIFY,
ORGANIZE AND PUT FORMULAS ON BOTTOM, ORGANIZE VAR @ TOP, */
import java.util.*;
public class Project1 {
public static void main (String[] args)

[Code] ....

View Replies View Related

Payroll System For Hourly / Fixed Monthly And Commission Paid Workers Of Company

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

Making Payroll Form Using Java Language But Its Like Framing Form?

Jun 6, 2014

import java.util.Scanner;
public class Exercise1{
public static void main(String[] args) {
String employeeName, employeeNumber, position, department ;
double otpay, salary, deduction, hrs, rate ;
Scanner input = new Scanner (System.in);

[Code] ....

That's my codes but its wrong according to our prof. it should be in frame form. i don't know how to do it since i did not encountered framing since i was started in java.

View Replies View Related

JSP :: Error Page Is Not Displaying Instead Error Status Code Is Displaying

Apr 5, 2014

I have written some error checking code

File name ErrorPage.jsp

<%@ page language="java" isErrorPage="true" 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">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Error</title>
</head>

[code]...

I have put error.jsp and badpage.jsp file in public access folder that is web content in eclipsewhen I am running the code I am status code of 500 and not the errorpage.jsp message .

View Replies View Related

Displaying MP4 Within JFrame?

Apr 5, 2015

I was wondering if its possible to show a video (mp4) inside a jframe? like the windows media player ....

View Replies View Related

Displaying A Return Value

Jan 18, 2014

I am working on a program to have a user input two positive integers and then finding the greatest common denominator between the two. My problem is, I don't know how to display the number (num2) that is returned after the method. Putting a simple System.out.println gives me the error "unreachable code".

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

[code]....

View Replies View Related

Displaying Name As Same Character

Jun 19, 2014

My program task is if we give a character... the display will print CHARACTER AS CHARACTER Shape

IF WE GIVE LETTER L... IT WILL PRINT LIKE THIS...

L

L

L

L L L L

View Replies View Related

Array Is Not Displaying

Feb 10, 2015

I have a problem with one method for my assignment. This is the requirement for this method: "This method uses a loop to list all accounts contained in the Array, adding each account details to a String, before outputting to screen in the format specified in the screenshot below. Ensure that there are no out of bounds exceptions by checking if each array slot has an account object before adding its details to the output String. (arrayname[index] != null)"This is my code for this method:

public void listAllAccounts() {
String allAccountsString = "List of all accounts:
";
for(int i = 0; i < ACCOUNT_SPACES; i++) {
//allAccountsString += accountArray[numAccounts];
if (accountArray[i] !=null) {
allAccountsString += accountArray[i].toString() + "
" ;
}
}
JOptionPane.showMessageDialog(null, allAccountsString);

The problem is that the Message Dialog does not display the accounts I have already created. It just displays "List of all accounts:
";

View Replies View Related

Displaying 2 Dim Array

Mar 27, 2015

When i am trying to display the contents of this array its showing arrayindexoutofbounds exception...how do i display this array?

<%
String names[][] = new String[10][2];
for(int i=0;i>=10;i++){
for(int j=0;j<=i;j++){
names[i][j]="anu";
if(j>0){

[Code] .....

View Replies View Related

Frame Not Displaying

Sep 20, 2014

I created a instance of a class AddItemView, inside StartUpMenuController. I then passed it into the class, the main method is below showing that as well. However when I do this:

else if(e.getSource()==menu.addBtn)
{
new addItem();
}

I get an error, little red line on the bottom of the text. I am testing the frame at the moment to make sure it is what I want before I move on to the Controller side of it. I just want to display it and go from there.

package mainMenu.Home.DataBase;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import addItemBtn.Home.DataBase.AddItemView;
public class StartUpMenuController
{
StartUpMenu menu;
AddItemView addItem;
 
[code]...

Not sure if this is the issue but the class I am making a new instance of is in a different package. I imported the package though.

View Replies View Related

JSP :: Instead Of Displaying File Asking PDF To Download

Aug 21, 2014

I am trying to display the files stored in server using jsp. I used the code below to display. But for pdf it is asking to download (No option for open). For XLS, XLSX, DOCX, PPT and PPTX it is showing zip file to download. For type doc it is showing junk data.

<%
String fileName=(String)request.getAttribute("fileName");
int loc = fileName.lastIndexOf(".");
String fileName1 = fileName.substring(0, loc);
String fileName2 = fileName.substring(loc + 1, fileName.length());

[Code] ...

View Replies View Related

Page Is Not Displaying The Content?

Sep 14, 2014

One of my official site is not disaplying the content in machine#1 IE10 browser.And the same site is showing data in another machine#2. I compared the both machines JRE and JDK settings but no difference found.

how to link the JRE to browser.

View Replies View Related

JFrame - ImageIcon Not Displaying?

Apr 14, 2014

why my image may not be showing. Note I am using eclipse.

Window.java:

import javax.swing.*;
 public class Window {
private JFrame gameWindow;
 public Window() {
gameWindow = new JFrame("Tamagotchi!");

[code]....

I have used file.exists() and this returns true, and file.length() which returns the correct file size.

System.out.println(backgroundImage) returns "splash.png" so thats ok.

Why then is my image not showing?

View Replies View Related

Displaying Inputs To TXT File?

Oct 13, 2014

so far this is what i have written. The program works correctly but I need to be able to have the numbers i am entering to show up on the .txt file.

import java.util.Scanner;
import java.io.*;
public class LargestAndSmallest {
public static void main(String[] args) throws IOException {
Scanner input = new Scanner(System.in);

[code].....

View Replies View Related

Displaying Override In Inheritance

Jul 11, 2014

I'm learning about inheritance and part of my problem is to create an Order with methods, then an UpdateOrder where the total price is changed by adding four dollars to it, and then a main method displaying a few orders. I've copied all three below in order. My question is when I run the program it will display the totalprice() first for the second order followed by name, number, etc.what you override always displayed first regardless of the order you put them in? (The issue is at line 31 on the third code.)

import javax.swing.JOptionPane;
public class Order { //superclass
private String customerName;
private int customerNumber;
protected int quantityOrdered;
protected double unitPrice;
protected double totalPrice;

[code]....

View Replies View Related

Displaying Output With A For Loop

Feb 28, 2015

I need to display my calculations in a table format using loops.

//Imports
import java.util.*;
import java.text.*;
public class YourLoanCalculator {
 
[code]....

The increments are correct, but I wanted them listed under the "Payment #:" column. I figure that if I do that, I can also correctly display the interest, principal, unpaid balance and total interest paid at that point, right?

View Replies View Related

Displaying Memory Location Instead Of Name?

Jan 28, 2014

Aatrox
Champions@3622e177
Champions@4805e9f1
Champions@57e40274
Champions@354124d6
Champions@262f4813
Champions@64f01d52
Frozen Heart
Randuin's Omen

As you can see instead of displaying the champion name it is displaying the memory location and I do not know how to fix it.

class Champions
{
String name;
Champions [] weak = new Champions [3];
Champions [] strong = new Champions [3];
String [] items = new String [3];
public static void main (String [] args)
{

[Code]...

View Replies View Related

Displaying Sets Of Points

Jan 20, 2014

Here is my code

Java Code: //Points Display
import java.applet.Applet;
import java.awt.*;
import java.awt.event.*;
import java.awt.Graphics;
import java.awt.Color;
import java.awt.Dimension;
import java.util.Random;

[code]...

1. Why, when I press "New" rapidly, will it skip painting shapes sometimes/adding to totcount.

2. How can I make it so that The box in the background(which is currently connected in the wrong way as I was getting an error when I connected it correctly) can be modifiably large. AKA, I want to draw a grid in the background that can be different sizes, depending on the values of a variable xsize and ysize.

3. What can I do to clean this up? All I want it to do is display the convex hull of the four points given in the int[][] displaypoints.

View Replies View Related

JPanel Is Not Displaying All The Time

Jul 2, 2014

Yes my JPanel is not displaying all the time like you would think it would. Before you beat me up yes I am a bit new I am just working on the GUI part of java over my summer break. Obviously it is not suppose to do that. Secondly, As you can see i am using the alphabet to create JButtons. Shouldnt there be an easier way to use a for( loop) . I tried before but I didn't want to get too side tracked.

Java Code:

import javax.swing.*;
import java.awt.*;
public class hello {
private JFrame alphaframe1;
private JFrame alphaframe2;

[Code] .....

View Replies View Related







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