阶梯电费java完整代码 阶梯电价编程题

java编程问题: 某城市用水实行阶梯计费 , 规则如下:对于生活用水:如public class WaterRate {
int type;
int quantity;
public WaterRate(int type, int quantity) {
super();
this.type = type;
this.quantity = quantity;
}
public double calc(){
double cash=0;
if(type==1){
if(quantity10){
cash = 10*2.5+(quantity-10)*3;
}else{
cash = quantity*2.5;
}
System.out.print("生活用水"+quantity+"吨,总计:");
}else if(type==2){
if(quantity20){
cash = 10*3.9+(quantity-10)*4.8;
}else{
cash = quantity*3.9;
}
System.out.print("商业用水"+quantity+"吨,总计:");
}else{
System.out.println("请输入正确的类型(1生活用水2商业永硕)");
}
【阶梯电费java完整代码 阶梯电价编程题】System.out.println(cash+"元");
return cash;
}
public static void main(String[] args) {
new WaterRate(1, 16).calc();
new WaterRate(2, 35).calc();
}
}之前就回答你了╮(╯_╰)╭
求java 阶梯算法 计算计件工资import java.util.*;
class Main{
private static double get(int n){
if(n550){
return 9 * (n-550) + get(550);
}else if(n450n=550){
return 5.5*(n-450)+get(450);
}else if(n 350 n=450){
return 3*(n-350)+get(350);
}else if(n100n=350){
return 2*(n-100)+get(100);
}else if(n0n=100) {
return get(0);
}
return 0;
}
public static void main(String[] args){
Scanner sc=new Scanner(System.in);
System.out.print("输入某人这个月计件阶梯电费java完整代码:");
int n = sc.nextInt();
sc.close();
System.out.printf("%.2f",get(n));
}
}
C程序设计,使用switch指令编程实现阶梯电费计算,并输出相应结果 。求大神给程序 。#includestdio.h
int main()
{
int n = 2;
double a = 0;
printf("请输入用电度数:");
scanf("%lf", a);
if ( a300 )
n = 0;
else
{
if ( a200 )
n = 1;
}
// shitch的参数严格来说是接受字符型的, 而case后面则应该接常量表达式, 你之前用的变量
switch( n )
{
case '0': printf ( "你应缴纳:%.2f\n" , ( a - 300 ) * 3 + 160 );
break;
case '1': printf("你应缴纳:%.2f\n", ( a - 200 ) * 0.6 + 100 );
break;
default:
printf("你应缴纳:%.2f\n", a * 0.5 );
}
return 0;
}
望采纳w
java阶梯阶递归详解public class Du {
public static void main(String[] args) {
long fac = fac(5);
System.out.println("5阶梯电费java完整代码的阶乘为:" + fac);
}
public static long fac(int n){
if(n == 1){
return 1;
}else{
return fac(n-1) * n;
}
}
}
-----------测试
5阶梯电费java完整代码的阶乘为:120
关于阶梯电费java完整代码和阶梯电价编程题的介绍到此就结束了 , 不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站 。

    推荐阅读