Question

Java using NetBean Create a table with 2 columns for employee 111 with salary 67.37 per...

Java using NetBean

Create a table with 2 columns for employee 111 with salary 67.37 per hour, employee 222 with salary 9.52 per hour, employee 333 with salary 120.63 per hour. Note the salaries are two digits after decimal point, but you need display them with format control of 1 digit after decimal point.

    ID Salary

111    67.4

222      9.5

333 120.6

0 0
Add a comment Improve this question Transcribed image text
Answer #1
//TestCode.java
public class TestCode  {
    public static void main(String[] args) {
        int[] IDs = {111,222,333};
        double[] Salaries = {67.4,9.5,120.6};

        System.out.println("ID\tSalary");
        for(int i = 0;i<IDs.length;i++){
            System.out.printf("%d\t%.1f\n",IDs[i],Salaries[i]);
        }
    }
}

Output

Salary ID 111 67.4 222 9.5 333 120.6 Process finished with exit code 0

Add a comment
Know the answer?
Add Answer to:
Java using NetBean Create a table with 2 columns for employee 111 with salary 67.37 per...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • JAVA ONLY. For this assignment you will create an employee application, containing contact information, salary, and...

    JAVA ONLY. For this assignment you will create an employee application, containing contact information, salary, and position. You will also define the type of company. Is it an engineering firm, a supermarket, or a call center? Once the application has been completed, I should be able to perform a query for any piece of information associated with each employee.   For instance, if I search for employees who make over $50,000, all of the employees whose salaries are greater than $50,000 should...

  • C++ Simple Employee Tracking System

    This assignment involves creating a program to track employee information.  Keep the following information on an employee:1.     Employee ID (string, digits only, 6 characters)2.     Last name (string)3.     First Name (string)4.     Birth date (string as MM/DD/YYYY)5.     Gender (M or F, single character)6.     Start date (string as MM/DD/YYYY)7.     Salary per year (double)Thus you must create a class that has all of this, and get/set methods for each of these fields.  Note: The fields that are designated as string should use the string...

  • Need to solve this program which will run exactly like sample run .. Thanks Project 2...

    Need to solve this program which will run exactly like sample run .. Thanks Project 2 Using Classes and Objects (Chapter 3) Duc: sec calendar Two files to be submitted: . Algorithm of method main (AlgorithmOfMain.txt, no credit if this is missing) Java Source code (CarpetBill.java- no credit if this has syntax errors) Write a program that creates customers' bills for a carpet company when the information below is given: irst name .Length and width of the carpet in feet...

  • In C++ Please please help.. Assignment 5 - Payroll Version 1.0 In this assignment you must create and use a struct to hold the general employee information for one employee. Ideally, you should use an...

    In C++ Please please help.. Assignment 5 - Payroll Version 1.0 In this assignment you must create and use a struct to hold the general employee information for one employee. Ideally, you should use an array of structs to hold the employee information for all employees. If you choose to declare a separate struct for each employee, I will not deduct any points. However, I strongly recommend that you use an array of structs. Be sure to read through Chapter...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT