UT源代码123

(3)设计佣金问题的程序


commission方法是用来计算销售佣金的需求,手机配件的销售商,手机配件有耳机(headphone)、手机壳(Mobile phone shell)、手机贴膜(Cellphone screen protector)三个部件,每个部件单价为:耳机80元,手机壳10元,手机贴膜8元,每月月末向制造商报告销量,制造商根据销量给销售商佣金。如果销售额不足1000元按10%提取佣金,1000-1800元部分按15%提取佣金,超过1800元部分按20%提取佣金。


 程序要求:


1)先显示“请分别输入三种手机配件的销售情况:”


2)不满足条件,返回:“输入数量不满足要求”,返回重新输入;


3)条件均满足, 则返回佣金额。返回等待输入。

import java.util.Scanner;

public class yongjin {
public static void main(String[] args){
yongjin yj = new yongjin();

System.out.println("请分别输入三种手机配件的销售情况:");
int headphone = yj.Input(0);
int shell = yj.Input(0);
int protector = yj.Input(0);
System.out.println("耳机数量:"+headphone+"\n手机壳数量:"+shell+"\n手机贴膜数量:"+protector);
double commission = yj.Commission(headphone, shell, protector);
System.out.println("销售佣金:"+commission);
}
public int Input(int number){
Scanner scanner = new Scanner(System.in);
int num = scanner.nextInt();
if(num<0){
System.out.println("输入的数量不满足要求!");
num = scanner.nextInt();
}else{
return num;
}
return num;
}
public double Commission(int headphone,int shell,int protector){
double commission = 0; //定义佣金;
int totalmoney = headphone*80+shell*10+protector*8;
if(totalmoney<1000||totalmoney>=0){
commission = totalmoney*0.1;
}else if(totalmoney<=1800||totalmoney>=1000){
commission = totalmoney*0.15;
}else if(totalmoney>1800){
commission = totalmoney*0.2;
}
return commission;
}
}

posted @ 2017-03-10 21:57  高浩峰  阅读(613)  评论(0编辑  收藏  举报