CLASS1

package com.abc;

public class class1 {
public static void main(String[] args) {
int left = 10;
int right = 8;
int temp;
System.out.println(“输出交换前的牌”);
System.out.println(“左手中的纸牌”+left);
System.out.println(“右手中的纸牌”+right);
temp = left;
left = right;
right = temp;
System.out.println(“输出交换后的牌”);
System.out.println(“左手中的纸牌”+left);
System.out.println(“右手中的纸牌”+right);
}
}
package com.abc;

import java.util.Scanner;

public class class2 {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
double basicWage,priceAllowance,rentAllowance,wages;
System.out.println(“请输入基本工资”);
basicWage = input.nextInt();
priceAllowance = basicWage * 0.4;
rentAllowance = basicWage * 0.25;
wages = basicWage + priceAllowance + rentAllowance;
System.out.println(“该公司员工的工资细目为:”);
System.out.println(“基本工资为:”+basicWage);
System.out.println(“物价津贴为:”+priceAllowance);
System.out.println(“房租津贴为:”+rentAllowance);
System.out.println(“员工薪水是:”+wages);
}
}

package com.abc;

import java.util.Scanner;

public class class3{
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
double principal;
System.out.println(“请输入本金:”);
principal = input.nextDouble();
double oneYear = principal + (principal * 0.0225);
double twoYears = principal + (principal * 0.027 * 2);
double threeYears = principal + (principal * 0.0324 * 3);
double fiveYears = principal + (principal * 0.036 * 5);
System.out.println(“本金为:” + principal);
System.out.println(“存取一年后本息是” + oneYear);
System.out.println(“存取两年后本息是” + twoYears);
System.out.println(“存取年三后本息是” + threeYears);
System.out.println(“存取五年后本息是” + fiveYears);
}
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值