有没有广药的


私信TA

用户名:PJJ19971124

访问量:37532

签 名:

有没有广药的

等  级
排  名 104
经  验 8349
参赛次数 8
文章发表 93
年  龄 0
在职情况 学生
学  校 广东药科大学
专  业

  自我简介:

TA的其他文章


解题思路:

注意事项:

参考代码:

import java.util.*;
import java.io.*;
import java.math.*;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int x=sc.nextInt();
		int y;
		if(x<=100000){
			y=(int) (0.1*x);
		}
		else if(x>100000&&x<=200000){
			y=(int) (10000+(x-100000)*0.075);
		}
		else if(x>200000&&x<=400000){
			y=(int) (10000+7500+(x-200000)*0.05);
		}
		else if(x>400000&&x<=600000){
			y=(int) (10000+7500+10000+(x-400000)*0.03);
		}
		else if(x>600000&&x<=1000000){
			y=(int) (10000+7500+10000+12000+(x-600000)*0.015);
		}
		else{
			y=(int) (10000+7500+10000+12000+9000+(x-1000000)*0.01);
		}
		System.out.println(y);
	}

}


 

0.0分

0 人评分

  评论区

  • «
  • »