gpt4 book ai didi

java - 为变量赋值

转载 作者:行者123 更新时间:2023-12-01 13:16:05 24 4
gpt4 key购买 nike

我是java初学者。我正在上一门计算机类(class),其中有一些编程。我目前正在做一项作业,其中涉及循环和数组等。

任务的一部分是输出员工的总工资。我只是想知道如何将此值存储为变量这是我的代码:

for(int position=0; position <hours.length;position=position+1) {
System.out.println("Gross Pay for " +employees[position]+("= ")+hours[position]*Wage[position]);}

我想知道我需要使用什么代码来将grosspay分配给一个变量,因为我必须计算25%的税,我也不确定如何做,但如果你可以的话帮助我完成第一部分,那将是非常棒的。我尝试了一些方法,但就是不明白。

我的工资和工时在数组中,是的,我也可以只显示我当前拥有的代码。 导入java.util.Scanner;公共(public)课作业 2 {

public static void main(String[] args) {

//declare array called employees to store the workers names
String employees[]= {"Samuel Patrick","Thomas Hogans","Murray Murphy","Michael Honnan","Anthony Brosnan","Pauline Clancy","Susan Slattery",};
//declare an array called Wage using the double data type to store the employees hourly wage
double Wage[]= {9.25,8.75,8.65,9.45,8.25,9.50,8.75};
//declare an array called hours which will be used to enter employees hours worked
int hours[] = new int[7];
//set up the scanner to allow employees hours worked to be entered
Scanner in = new Scanner(System.in);
//Instruct the user to enter the amount of hours worked
System.out.println("Enter hours worked");
for(int position=0; position <hours.length;position=position+1) {
System.out.print("Employee "+employees[position]);
hours[position] = in.nextInt();
}
for(int position=0; position <hours.length;position=position+1) {
System.out.println("Gross Pay for " +employees[position]+("= ")+hours[position]*Wage[position]);}
{
for(int position=0; position <hours.length;position=position+1);
System.out.print("Total Tax owed for "+employees[position]
}
}

我尝试过这样输入

double GrossPay = (employees[position]+hours[position]*Wage[position]);

但是不断出现错误,正确的方法是什么?

我知道这可能不是最有效的做事方式,但老师希望这样做。

最佳答案

看看this page解释了如何在 Java 中分配变量。

假设您的变量是 double 型,您将得到如下所示的结果:

double grosspay = 9586.250;

那么你必须用你的公式替换 9586.250。

关于java - 为变量赋值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22458839/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com