2024年9月2日
摘要: 双指针 https://www.luogu.com.cn/problem/list?tag=345 洛谷题目 1 A+B #include <bits/stdc++.h> #define ll long long using namespace std; const int N = 2e5 + 10 阅读全文
posted @ 2024-09-02 19:36 Hoshino1 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 随机数 import java.util.Random; public class Main { public static void main(String[] args) { Random r = new Random(); int data = r.nextInt(10); //0-9之间的随 阅读全文
posted @ 2024-09-02 09:41 Hoshino1 阅读(26) 评论(0) 推荐(0) 编辑