摘要:
判断数字n是不是质数 import java.util.Scanner; public class Main{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int n = sc.nextIn
阅读全文
posted @ 2023-05-01 15:39
逆袭怪
阅读(12)
推荐(0)
摘要:
###1.求第n项(前77项) ``` import java.util.Scanner; public class Main{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int n =
阅读全文
posted @ 2023-05-01 13:09
逆袭怪
阅读(24)
推荐(0)
摘要:
3个数升序排序 if (a > b) {double t = a; a = b; b = t;} if (a > c) {double t = a; a = c; c = t;} if (b > c) {double t = b; b = c; c = t;} 3个数降序排序 if (a < b)
阅读全文
posted @ 2023-05-01 08:39
逆袭怪
阅读(29)
推荐(0)
摘要:
输入字符串a 一般写法:(a.equals("字符串")) 写工程的时候:("字符串".equals(a)) 2023-05-01 08:18:26 星期一
阅读全文
posted @ 2023-05-01 08:20
逆袭怪
阅读(13)
推荐(0)
摘要:
==a== > ==b== 等价于 b < a ==a== >= ==b== 等价于 !(a < b) 即a不小于b ==a== <= ==b== 等价于 !(b < a) 即b不小于a ==a== == ==b== 等价于 !(a < b) && !(b < a) 夹逼原理 ==a== != ==
阅读全文
posted @ 2023-04-30 21:48
逆袭怪
阅读(119)
推荐(0)
摘要:

这是详细的机器学习分析步骤,有助于进行数据分析。
阅读全文
posted @ 2022-11-16 00:28
逆袭怪
阅读(107)
推荐(0)
摘要:
####我的博客--梦想起航的开始 哦耶,今天开始终于可以写博客了,我要把我自学的技术都写在这里。让博客园见证我的努力和进步,这将会是我一生的财富。
阅读全文
posted @ 2022-11-15 01:27
逆袭怪
阅读(49)
推荐(1)