- 1、本文档共6页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
《java 算法第二版》.doc
package com.sailor.game;
import java.util.Scanner;
/**
* 题目:企业发放的奖金根据利润提成。利润(I)低于或等于10万元时,奖金可提10%;利润高于10万元,
* 低于20万元时,低于10万元的部分按10%提成,高于10万元的部分,可可提成7.5%;20万到40万之间时,
* 高于20万元的部分,可提成5%;40万到60万之间时高于40万元的部分,可提成3%;60万到100万之间时,高于60万元的部分,
* 可提成1.5%,高于100万元时,超过100万元的部分按1%提成,从键盘输入当月利润I,求应发放奖金总数?
*
* @author Sailor
*
*/
public class Prize_Problem {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println(请输入这个月的利润(万元):);
double profit = in.nextDouble();
System.out.println(奖金为(万元): + getPrize(profit));
}
public static double getPrize(double profit) {
double temp;
double prize = 0;
if (profit 100) {
temp = profit - 100;
prize += temp * 0.01;
profit -= temp;
}
if (profit 60) {
temp = profit - 60;
prize += temp * 0.015;
profit -= temp;
}
if (profit 40) {
temp = profit - 40;
prize += temp * 0.03;
profit -= temp;
}
if (profit 20) {
temp = profit - 20;
prize += temp * 0.05;
profit -= temp;
}
if (profit 10) {
temp = profit - 10;
prize += temp * 0.075;
profit -= temp;
}
if (profit = 10) {
prize += profit * 0.1;
}
return prize;
}
}
package com.sailor.game;
import java.util.Scanner;
/**
* 题目:给一个不多于5位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字。
*
* @author Sailor
*/
public class Reverse_Order_Output {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println(请输入一个不多于五位的整数:);
int n = in.nextInt();
if (n 99999 || n 0) {
System.out.println(输入的数不符合要求);
System.exit(1);
}
System.out.println(getDigitS(n));
System.out.println(reverse_order(n));
}
// 将一个不大于5位的整数的反序后的数返回
public static int reverse_order(int n) {
int result = 0;
int exp = 0;// 从最高位开始累加
for (int i = 4; i = 0; i--) {
int temp = (int) (n / Math.pow(10, i));
if (temp 0 || exp 0) {
result += (int) (temp * Math.pow(10, exp));
exp++;
n = (int) (n % Math.pow(10, i));
}
}
return result;
}
// 获得一个不大于5位数的位数
p
您可能关注的文档
- 《GB7000.5道路与街道照明灯具》.pdf
- 《GB7002-2016T 投光照明灯具光度测试》.pdf
- 《GBT 23595.3-2016 白光LED灯用稀土黄色荧光粉试验方法 第3部分:色品坐标的测定》.pdf
- 《GBT 23595.4-2016 白光LED灯用稀土黄色荧光粉试验方法 第4部分:热稳定性的测定》.pdf
- 《GBT 23595.6-2016 白光LED灯用稀土黄色荧光粉试验方法 第6部分:电导率的测定》.pdf
- 《GB_24823-2016普通照明用LED性能要求》.pdf
- 《GB_T24907-2016-道路照明用LED灯性能要求》.ppt
- 《gearbox》.pdf
- 《General questions about lean operations》.docx
- 《Generation of 11.5 W coherent red-light by》.pdf
文档评论(0)