This commit is contained in:
Zengtudor 2025-08-15 11:15:51 +08:00
parent eeeb774996
commit 7f08957050

View File

@ -1,5 +1,6 @@
#include <iostream> #include <iostream>
#include <random>
int main(){ int main(){
int a; std::random_device rd;
std::cout<<a<<'\n'; std::cout<<rd()<<'\n';
} }