摘要: #include<random> #include<iostream> int main() { //定义均匀分布对象,均匀分布区间(a,b)为(2,6) std::uniform_real_distribution<double> uid{ 2,6 }; ////均匀分布区间(a,b) //std 阅读全文
posted @ 2022-11-30 19:28 yc-limitless 阅读(191) 评论(0) 推荐(0) 编辑