摘要: 随机数基本使用 int a = 1; int b = 100; srand((unsigned)time(NULL)); int t = (rand()%(b-a))+a; 更好的随机数使用 #include <bits/stdc++.h> using namespace std; int main 阅读全文
posted @ 2023-12-31 11:56 Nijika 阅读(9) 评论(0) 推荐(0)