JAVA基础:数据类型与运算符 (习题笔记)

1.输入自己的名字,年龄和性别,分别用不同的变量接收,并将输入的信息做输出。

java 复制代码
public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        System.out.println("请输入你的名字:");
        String name = input.next();
        System.out.println("请输入你的年龄:");
        int age = input.nextInt();
        System.out.println("请输入你的性别:");
        String sex = input.next();

        System.out.println("你的姓名是:" + name + "\n你的年龄是:" + age + "\n你的性别是:" + sex);
    }

2.输入圆形半径,求圆形的周长和圆形的面积,并将结果输出。

java 复制代码
public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        System.out.println("请输入圆的半径:");
        final double PI = 3.14;//常量
        double r = input.nextDouble();
        double zhouchang = 2 * PI * r;
        double mianji = PI * r * r;
        System.out.println("该圆的半径是:R=" + r +
                "\n该圆的周长是:C=" + 2 + "*" + PI + "*" + r + "*" + "=" + zhouchang +
                "\n该圆的面积是:S=" + PI + "*" + r + "*" + r + "=" + mianji);

    }

3.银行利率表如下表所示,请计算存款10000元,活期1年、活期2年,定期1年,定期2年后的本息合计。

结果如下图所示。(结果四舍五入,不保留小数位。使用Math.round(double d)实现)

java 复制代码
//方法一
 public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        final double BJ = 10000;//常量
        double huo1 = BJ * (1 + 0.35 / 100);
        double ding1 = BJ * (1 + 1.50 / 100);
        double huo2 = huo1 * (1 + 0.35 / 100);
        double ding2 = BJ * (1 + 2.10 / 100 * 2);
        System.out.println("本金" + BJ +
                "\n活期1年本金总计:" + Math.round(huo1) +
                "\n定期1年本金总计:" + Math.round(ding1) +
                "\n活期2年本金总计:" + Math.round(huo2) +
                "\n定期2年本金总计:" + Math.round(ding2));

    }
//方法二
 public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        int principal = 10000;//本金

        double currentRate = 0.35E-2;//活期年利率
        double regularRate1 = 1.50E-2;//定期1年的年利率
        double regularRate2 = 2.10E-2;//定期2年的年利率

        double current1 = principal * (1 + currentRate);//活期1年本金总计
        double current2 = principal * (1 + currentRate * 2);//活期2年本金总计
        double regular1 = principal * (1 + regularRate1);//定期1年本金总计
        double regular2 = principal * (1 + regularRate2 * 2);//定期2年本金总计

        System.out.println("本金:" + principal);
        System.out.println("活期1年本金总计:" + Math.round(current1));
        System.out.println("定期1年本金总计:" + Math.round(regular1));
        System.out.println("活期2年本金总计:" + Math.round(current2));
        System.out.println("定期2年本金总计:" + Math.round(regular2));


    }

4.某个公司采用公用电话传递数据,数据是四位的整数,在传递过程中是加密的,加密规则如下:每位数字都加上5,然后用和除以10的余数代替该数字,再将第一位和第四位交换,第二位和第三位交换。结果如图所示。

java 复制代码
public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        System.out.println("请输入一个4位正整数");
        int zheng = input.nextInt();
        int qian = ((zheng / 1000) + 5) % 10;
        int bai = (((zheng / 100) % 10) + 5) % 10;
        int shi = (((zheng / 10) % 10) + 5) % 10;
        int ge = ((zheng % 10) + 5) % 10;
        System.out.println("加密后的数字为:" + ge + shi + bai + qian);

    }
相关推荐
coding已疯狂2 分钟前
面试官:说一下SpringBoot 启动流程
java·spring boot·spring
DARLING Zero two♡5 分钟前
关于我、重生到500年前凭借C语言改变世界科技vlog.15——深入理解指针(4)
c语言·开发语言·科技
毕业设计制作和分享5 分钟前
ssm公交车信息管理系统+vue
java·vue.js·spring boot·毕业设计·mybatis
混迹网络的权某6 分钟前
蓝桥杯真题——三角回文数(C语言)
c语言·开发语言·算法·蓝桥杯·改行学it
鸠摩智首席音效师7 分钟前
如何在一个 Docker 容器中运行多个进程 ?
java·docker·容器
PangPiLoLo10 分钟前
高可用架构-业务高可用
java·性能优化·架构
爱上语文12 分钟前
苍穹外卖 商家取消、派送、完成订单
java·开发语言·spring boot·后端
墨柳烟21 分钟前
ABAQUS高亮显示网格节点方法:Python为每个节点建立集合
开发语言·前端·python·abaqus
爱敲代码的小冰34 分钟前
java mapper 的 xml讲解
xml·java·mybatis
readmancynn35 分钟前
尚庭公寓-小程序接口
java·数据库