Java练习题: Demo01 - Demo31

本文详细介绍了从Demo01到Demo31一系列Java编程练习题,涵盖基础语法、数据结构、面向对象等多个方面,旨在提升Java编程技能。
摘要由CSDN通过智能技术生成

在这里插入图片描述

public class Demo01{
   
    public static void main(String[] args){
   
        System.out.println((9.5 * 4.5 - 2.5 * 3) / (45.5 - 3.5));
    }
}

在这里插入图片描述

public class Demo02{
   
    public static void main(String[] args){
   
        System.out.println(4 * (1.0 - 1.0 / 3 + 1.0 / 5 - 1.0 / 7 + 1.0 / 9 - 1.0 / 11));
        System.out.println(4 * (1.0 - 1.0 / 3 + 1.0 / 5 - 1.0 / 7 + 1.0 / 9 - 1.0 / 11 + 1.0 / 13));
    }
}

在这里插入图片描述

public class Demo03{
   
    public static void main(String[] args){
   
        System.out.println("周长=" + 2 * 5.5 * 3.14);
        System.out.println("面积=" + 5.5 * 5.5 * 3.14);
    }
}

在这里插入图片描述

public class Demo04{
   
    public static void main(String[] args){
   
        System.out.println(14 / 1.6 / (45 * 60 + 30) * 3600 + "英里/小时");
    }
}

在这里插入图片描述

public class Demo05{
   
    public static void main(String[] args){
   
        System.out.println(24 * 1.6 / (1 * 3600 + 40 * 60 + 35) * 3600 +"公里/小时");
    }
}

在这里插入图片描述

public class Demo06 {
   
    public static void main(String[] args){
   
        System.out.println("x=" + (44.5 * 0.55 - 50.2 * 5.9) / (3.4 * 0.55 - 50.2 * 2.1));
        System.out.println("y=" + (3.4 * 5.9 - 2.1 * 44.5) / (3.4 * 0.55 - 50.2 * 2.1));
    }
}

在这里插入图片描述
在这里插入图片描述

public class Demo07{
   
    public static void main(String[] args){
   
        long millis = System.currentTimeMillis();
        long seconds = millis / 1000;
        long minutes = seconds / 60;
        long hours = minutes / 60;
        long currentHours = hours % 24;
        long currentMinutes = minutes % 60;
        long currentSeconds = seconds % 60;
        
        
        System.out.println(currentHours + ":" + currentMinutes + ":" + currentSeconds);
    }
}

在这里插入图片描述

import java.util.Scanner;
public class Demo08{
   
    public static void main(String[] args){
   
        Scanner input = new Scanner(System.in);
        System.out.print("输入一个十进制数:");
        double money = input.nextDouble();
        double penny = money * 100;
        double dollar = penny / 100;
        penny = penny % 100;
        double quarter = penny / 25;
        penny = penny % 25;
        double dime = penny / 10;
        penny = penny % 10;
        double nickle = penny / 5;
        penny = penny % 5;
        int sum = (int)(dollar + quarter + dime + nickle + penny);
        System.out.println("The number of the coin = " + sum);
    }
}

在这里插入图片描述
在这里插入图片描述

import java.util.Scanner;
public class Demo09{
   
    public static void main(String[] args){
   
        Scanner input = new Scanner(System.in);
        System.out.print("Enter a degree in Celsius:");
        double cel = input.nextDouble();
        double fah = cel * 9 / 5 + 32;
        System.out.println(cel + "Celsius is" + fah + "Fahrenheit");
    }
}

在这里插入图片描述

import java.util.Scanner;
public class Demo10{
   
    public static void main(String[] args){
   
        Scanner input = new Scanner(System.in);
        System.out.print("Enter the radius and length of a cylinder:");
        double radius = input.nextDouble();
        double length = input.nextDouble();
        double area = radius * radius * (Math.PI);
        double volume = area * length;
        System.out.println("The area is " + area);
        System.out.println("The volume is " + volume);
    }
}

在这里插入图片描述

import java.util.Scanner;
public class Demo11{
   
    public static void main(String[] args){
   
        Scanner input = new Scanner(System.in);
        System.out.print("Enter a number between 0 and 1000:");
        int num 
输入d时候如果输入数字不为浮点数则提示“sorry!请重新输入:”如果输入的数为浮点数则提示“再见”用以下代码补全 package t7; import java.text.DecimalFormat;//导入外面的包 import java.util.Scanner; import t2.WeekDemo; public class ZhiChuDemo { double zhichu[]=new double[7];//定义一个数组存放7个支出数据 String titles[]={"衣","食","住","行","交际","爱好","其他"}; public static void main(String[] args){ WeekDemo temp1=new WeekDemo();//创建对象 //打印 2023-3-28 星期二 System.out.println("今天是:"+temp1.getTodayStr());//周日是1 ...周六是7 ZhiChuDemo temp=new ZhiChuDemo(); temp.input(); temp.printPer(); temp.printArc(); } public void input(){//从键盘上接收数字并赋值 Scanner s=new Scanner(System.in); try{ for(int i=0;i<zhichu.length;i++){ System.out.println("请输入这个月--"+titles[i]+"---这项的支出"); String str=s.next();//从键盘上接收一个字符串 //判断str是不是合法的float数 如果不是,重新输入 zhichu[i]=Float.parseFloat(str); } }catch(Exception ex){ System.out.print(ex.getMessage()); } } public double countSum(){//计算总支出 double all=0; for(int i=0;i<zhichu.length;i++){ all=all+zhichu[i];//累加 } return all; } public void printPer(){//打印百分比 double money=countSum(); // DecimalFormat df3 = new DecimalFormat("0.00"); System.out.println("总支出额:"+(int)money); for(int i=0;i<zhichu.length;i++){ System.out.println("---"+titles[i]+"---占总支出的百分比:"+((zhichu[i]/money)*100)+'%'); } } public void printArc(){//打印弧度值 double money=countSum(); for(int i=0;i<zhichu.length;i++){ System.out.println("---"+titles[i]+"---在图饼中占"+((int)((zhichu[i]/money)*360))+"度"); } } }
最新发布
05-24
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值