SWUST OJ #77 计算员工周工资

题目描述

编写一个程序,输入某雇员的每周工作时间(以小时计)和每小时的工资数,计算并输出他的工资。

如果时间小于0或大于一周的总时间,输出 input is wrong! ;

若雇员周工作小时超过40 小时,则超过部分按原工资的1.5 倍的加班工资来计算;

若雇员每周工作小时超过60 小时,则超过60 的部分按原工资的3 倍的加班工资来计算,而40 到60 小时的工资仍按照原工资的1.5 倍的加班工资来计算。


解析:做这种计算题,要先列出多种情况,得出数学表达式,不要一上来就敲代码。根据题意,我们可以列出4种情况即:1.hour<0或hour>7*24. 2.hour>=0且hour<40. 3.hour>=40且hour<=60. 4.hour>60. 再填充数学表达式到各情况,最后输出想要得到的结果。

详细代码:

#include<stdio.h>
int main()
{
    int hour;
    float margin,salary;            //题目上时间是整型变量,小时工资margin是浮点型(含小数位数)

                                               //计算出的周工资salary可能是整数,也可能是含小数位的,所以定义salary可用单精度浮点型float,或者双精度浮点型double。
    scanf("%d %f",&hour,&margin);
    if(hour<0||hour>7*24) printf("input is wrong!\n");
    else if(hour>=0&&hour<=40){
        salary=hour*margin;
        printf("%g\n",salary);      //选择使用%g的原因是:对输出的数字格式化。比如:所得数据为12.250000,用%g后,数据就会简化为12.25,舍去掉后面无意义的数字。
    }  
    else if(hour>40&&hour<=60){
        salary=40*margin+(hour-40)*1.5*margin;
        printf("%g\n",salary);
    }
    else if(hour>60){
        salary=40*margin+(60-40)*1.5*margin+(hour-60)*3*margin;
        printf("%g\n",salary); 
    }
    
    return 0;
}

#include<stdio.h>
int main()
{
    int hour;
    float margin,salary;
    scanf("%d %f",&hour,&margin);
    if(hour<0||hour>7*24) printf("input is wrong!\n");
	else if(hour>=0&&hour<=40){
		salary=hour*margin;
		printf("%g\n",salary);
	}  
	else if(hour>40&&hour<=60){
		salary=40*margin+(hour-40)*1.5*margin;
		printf("%g\n",salary);
	}
	else if(hour>60){
		salary=40*margin+(60-40)*1.5*margin+(hour-60)*3*margin;
		printf("%g\n",salary); 
	}
	
	return 0;
}
为了按照总工时降序显示雇员及其总工时,我们可以使用面向对象编程(OOP)的设计思路,创建一个员工类`Employee`,包含姓名属性以及计算总工时的方法。然后,我们可以创建一个二维数组`EmployeesData`来存储每个雇员一的工作时间,并维护一个`EmployeeList`来保存所有雇员对象,按照总工时排序。 首先,我们定义`Employee`类: ```java public class Employee { private String name; private int[][] weeklyHours; public Employee(String name, int[][] weeklyHours) { this.name = name; this.weeklyHours = weeklyHours; } // 计算总工时的方法 public int getTotalWorkingHours() { int total = 0; for (int[] dayHours : weeklyHours) { total += Arrays.stream(dayHours).sum(); } return total; } @Override public String toString() { return "Employee [name=" + name + ", total hours=" + getTotalWorkingHours() + "]"; } } ``` 接着,我们处理主程序部分: ```java import java.util.*; class Main { public static void main(String[] args) { // 假设这是员工数据 int[][] employessData = { /* 这里填充8个雇员一的工时数据 */ }; List<Employee> employeeList = new ArrayList<>(); // 创建并添加员工到列表 for (int i = 0; i < employessData.length; i++) { Employee employee = new Employee("Employee " + (i+1), employessData[i]); employeeList.add(employee); } // 使用Collections.sort对员工列表按总工时降序排序 Collections.sort(employeeList, Comparator.comparingInt(Employee::getTotalWorkingHours).reversed()); // 打印结果 for (Employee employee : employeeList) { System.out.println(employee); } //
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值