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];
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");
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.
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
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");
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.
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)
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,
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.
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.
<%@ 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 .
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)
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: ";
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.
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());
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.
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;
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?
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) {
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.
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;