- BC20260158's blog
随机数程序
- 2024-5-11 12:01:19 @
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<ctime>
#include<iostream>
using namespace std;
int main(){
srand(time(0));
q:
for(int i=0;i<10;i++){
cout<<rand()%256+1<<endl;
system("pause");
goto q;
}
}