• Java超详细的基础编程300题,附带答案,持续更新中~


    目录

    1.输出"Java是世界上最好的语言!"。开始你的编程之旅吧。

    2.计算带余除法

    3.整数的个位

    4.整数的十位

    5.计算两个整数的和

    6.求两个整数中的最大值

    7.判断素数

    8.判断闰年

    9.输出素数

    10.输出闰年

    11.数字9出现的次数

    12.统计成绩

    13.温度转换

    14.圆的面积

    15.张三喝水

    16.张三排电梯

    17.张三的朋友与欧几里得


    1.输出"Java是世界上最好的语言!"。开始你的编程之旅吧。

    题目描述:无

    1. public class eat {
    2. public static void main(String[] args) {
    3. System.out.println("Java是世界上最好的语言!");
    4. }
    5. }

    2.计算带余除法

    题目描述:给定两个整数a和b (0 < a,b < 10,000),计算a除以b的整数商和余数。

    1. public class eat {
    2. public static void main(String[] args) {
    3. Scanner input = new Scanner(System.in);
    4. //输入
    5. int a = input.nextInt();
    6. int b = input.nextInt();
    7. System.out.println("商:" + a / b);//商
    8. System.out.println("余数:" + a % b);//余数
    9. }
    10. }

    3.整数的个位

    题目描述:输入一个整数a, 求个位数是几

    1. public class Array {
    2. public static void main(String[] args) {
    3. Scanner input = new Scanner(System.in);
    4. int a = input.nextInt();//输入
    5. if (a < 9) {//只有一位数的情况本身就是个位
    6. System.out.println(a);
    7. }else {
    8. System.out.println(a % 10);//模10求余数
    9. }
    10. }
    11. }

    4.整数的十位

    题目描述:输入一个整数a, 求十位数是几

    1. public class Array {
    2. public static void main(String[] args) {
    3. Scanner input = new Scanner(System.in);
    4. int a = input.nextInt();//输入
    5. if (a < 9) {//只有一位数的情况本身就是十位
    6. System.out.println(a);
    7. }else {
    8. System.out.println(a / 10);//除10求余数
    9. }
    10. }
    11. }

    5.计算两个整数的和

    题目描述:输入两个整数,计算它们两个的和

    1. public class Array {
    2. public static void main(String[] args) {
    3. Scanner input = new Scanner(System.in);
    4. System.out.println("请输入两个整数:");
    5. //输入
    6. int x = input.nextInt();
    7. int y = input.nextInt();
    8. //计算和
    9. int sum = x + y;
    10. System.out.println(sum);//输入两个整数和
    11. }
    12. }

    6.求两个整数中的最大值

    题目描述:输入两个整数求的最大值

    方法1:if语句判断

    1. public class Array {
    2. public static void main(String[] args) {
    3. Scanner input = new Scanner(System.in);
    4. System.out.println("请输入两个整数:");
    5. //输入
    6. int x = input.nextInt();
    7. int y = input.nextInt();
    8. //计算最大值
    9. int max = 0;//存储最大值的变量
    10. if (x > y) {
    11. max = x;
    12. }else {
    13. max = y;
    14. }
    15. System.out.println(max);//输入最大值
    16. }
    17. }

    方法2:条件表达式

    1. public class Array {
    2. public static void main(String[] args) {
    3. Scanner input = new Scanner(System.in);
    4. System.out.println("请输入两个整数:");
    5. //输入
    6. int x = input.nextInt();
    7. int y = input.nextInt();
    8. //计算最大值
    9. int max = x > y ? x : y;//存储最大值的变量
    10. System.out.println(max);//输入最大值
    11. }
    12. }

    7.判断素数

    题目描述:输入一个整数,判断是不是素数

    1. public class Array {
    2. public static void main(String[] args) {
    3. Scanner input = new Scanner(System.in);
    4. System.out.println("请输入1个整数:");
    5. //输入
    6. int num = input.nextInt();
    7. //素数:不能被除了1和它本身的数整除
    8. for (int i = 2; i < num; i++) {
    9. if (num % i == 0) {
    10. System.out.println("不是素数");
    11. break;
    12. }else {
    13. System.out.println("是素数");
    14. }
    15. }
    16. }
    17. }

    8.判断闰年

    题目描述:输入一个年份,判断其是不是闰年

    1. public class Exercise {
    2. public static void main(String[] args) {
    3. Scanner input = new Scanner(System.in);
    4. //输入
    5. int year = input.nextInt();
    6. //闰年:能被4整除并且不能被100整除 - 或者能被400整除
    7. if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
    8. System.out.println("Is leap year");//是闰年
    9. }else {
    10. System.out.println("Is not leap year");//不是闰年
    11. }
    12. }
    13. }

    9.输出素数

    题目描述:打印100~200的素数

    1. public class Exercise {
    2. public static void main(String[] args) {
    3. for (int i = 100; i <= 200 ; i++) {
    4. for (int j = i + 1; j < 200 ; j++) {
    5. if (i % j == 0) {
    6. //不是素数 - 不需要打印
    7. }
    8. }
    9. //程序走到这里说明内循环走完了都不能整除 - 是素数输出
    10. System.out.print(i + " ");
    11. }
    12. }
    13. }

    10.输出闰年

    题目描述:打印1000~2000的闰年

    1. public class Exercise {
    2. public static void main(String[] args) {
    3. for (int i = 1000; i <= 2000 ; i++) {
    4. //利用循环一个数一个数判断
    5. if ((i % 4 == 0 && i % 100 != 0) || i % 400 == 0) {
    6. System.out.println(i);
    7. }
    8. //不是的话这不需要输出
    9. }
    10. }
    11. }

    11.数字9出现的次数

    题目描述:统计1~100之间出现了几次数字9

    1. public class Exercise {
    2. public static void main(String[] args) {
    3. int count = 0;//记录9的个数
    4. for (int i = 1; i <= 100 ; i++) {
    5. if (i % 10 == 9) {
    6. //看个位是不是9
    7. count++;
    8. }else if (i / 10 == 9) {
    9. //看十位是不是9
    10. count++;
    11. }
    12. }
    13. System.out.println(count);
    14. }
    15. }

    12.统计成绩

    题目描述:统计十个同学的最高分,最低分以及平均分。

    1. public class Exercise {
    2. public static void main(String[] args) {
    3. Scanner input = new Scanner(System.in);
    4. double max = 0.0;//最高分
    5. double min = 100.0;//最低分
    6. double mean = 0.0;//平均值
    7. double sum = 0.0;//求和
    8. double[] score = {77.1, 88.1, 76.1, 56.1, 87.1, 98.1, 55.1, 94.1, 39.1, 96.1};
    9. //求和
    10. for (int i = 1; i <= score.length - 1 ; i++) {
    11. sum += score[i];//求数组元素值的和
    12. }
    13. for (int i = 1; i <= score.length - 1 ; i++) {
    14. if (score[i] > max) {//此时i下标大于此时的max,i下标的值就是此时的最高分
    15. max = score[i];
    16. }
    17. if (score[i] < min) {//此时i下标小于此时的max,i下标的值就是此时的最低分
    18. min = score[i];
    19. }
    20. }
    21. mean = sum / score.length;//计算平均数
    22. System.out.println(max);
    23. System.out.println(min);
    24. System.out.println(mean);
    25. }
    26. }

    13.温度转换

    题目描述:输入一个浮点数f, 表示华氏温度, 输出对应的摄氏温度c , c=5/9*(f-32)

    1. public class Exercise {
    2. public static void main(String[] args) {
    3. Scanner input = new Scanner(System.in);
    4. double F = input.nextDouble();//华氏温度
    5. double C = input.nextDouble();//摄氏温度
    6. C = ((F - 32) * 5) / 9;//通过公式转化成摄氏温度
    7. System.out.println(C);//输出摄氏温度
    8. }
    9. }

    14.圆的面积

    题目描述:有一个半径为 r 的圆,请你计算这个圆的面积。圆的面积公式是π r^2 ,其中 π  取 3.14

    1. public class Exercise {
    2. public static void main(String[] args) {
    3. Scanner input = new Scanner(System.in);
    4. int r = input.nextInt();
    5. double s = 0.0;//统计面积
    6. s = 3.14 * (r * r);
    7. System.out.println(s);
    8. }
    9. }

    15.张三喝水

    题目描述:现在有人口渴了,要喝10升水才能解渴,但现在只有一个深 h 厘米,底面半径是 r 厘米的水杯,这个人最少要喝多少杯水才能解渴。

    其中 π 取 3.14 ,h  和 r  是整数。

    1. public class Exercise {
    2. public static void main(String[] args) {
    3. Scanner input = new Scanner(System.in);
    4. double r = input.nextDouble();
    5. double h = input.nextDouble();
    6. double sum = 0.0;
    7. double v = 0.0;
    8. System.out.println((int) (10000 / (3.14 * h * r * r)) + 1);
    9. }
    10. }

    16.张三排电梯

    题目描述:张三学校教学楼的电梯前排了很多人,他的前面有n个人在等电梯。电梯每次可以乘坐12人,每次上下需要的时间为4分钟(上需要2分钟,下需要2分钟)。请帮助张三计算还需要多少分钟才能乘电梯到达楼上。(假设最初电梯在1层)

    1. public class Exercise {
    2. public static void main(String[] args) {
    3. Scanner input = new Scanner(System.in);
    4. int n = input.nextInt();
    5. int k = 0;
    6. int z = 0;
    7. if (n > 12) { //n大于12说明电梯一次运不完
    8. if (n % 12 == 0) { //n % 12等于0说明电梯装满人了并且没有剩下人
    9. z = n / 12; //将n除12的值赋给z,得到坐电梯的次数
    10. k = z * 4; //电梯每次上和下用掉的时间*做电梯的次数就是上楼的时间
    11. } else { //还有人没有运完
    12. z = n / 12;//坐电梯的次数
    13. k = z * 4 + 2;//因为还有人没有运完,所以电梯还要再运上去一次,也就是加两分钟
    14. }
    15. } else if (n == 12) { //n等于12说明电梯一次正好可以运完
    16. k = 4 + 2;//将前面的人运完后再运小乐乐,也就是4+2分钟
    17. }
    18. else{ //n小于12说明电梯在一次可以运完的情况下,而且没有装满,所以小乐乐可以跟着上去
    19. // k = 2;//k就是小乐乐上楼的时间
    20. }
    21. System.out.println(k);//上楼的时间
    22. }
    23. }

    17.张三的朋友与欧几里得

    题目描述:李四最近在课上学习了如何求两个正整数的最大公约数与最小公倍数,但是他竟然不会求两个正整数的最大公约数与最小公倍数之和,请你帮助他解决这个问题。

    1. public class Exercise {
    2. public static void main(String[] args) {
    3. Scanner input = new Scanner(System.in);
    4. long a = input.nextLong();
    5. long b = input.nextLong();
    6. long comax = 0;
    7. long comin = 0;
    8. long k = a * b;
    9. while (a != 0 && b != 0) {
    10. if (a > b) {
    11. a = a % b;
    12. }
    13. else {
    14. b = b % a;
    15. }
    16. }
    17. comax = a > b ? a : b;
    18. comin = k / comax;
    19. System.out.println(comax + comin);
    20. }
    21. }
  • 相关阅读:
    【设计模式】访问者模式
    正大美欧4的主账户关注什么数据?
    单独修改组件库样式/样式穿透/深度选择器
    《golang设计模式》第三部分·行为型模式-06-备忘录模式(Memento)
    Redis篇---第二篇
    vector
    Spring Security Auth/Acl 实践指南
    力扣刷题学习SQL篇——1-5 修改(变更性别——使用判断if/case when)
    开学季蓝牙耳机怎么选?高性价比学生蓝牙耳机推荐
    【数据结构与算法系列5】螺旋矩阵II (C++ & Python)
  • 原文地址:https://blog.csdn.net/m0_63033419/article/details/126152225