#include <iostream> using namespace std; #include <stdlib.h> #include <time.h> int getrand(int max) { return rand()%max; } int main() { int i; srand((unsigned)time(NULL)); for (i=0; i<10; i++) { cout<<getrand(100)<<endl; } cout<<endl; return 0; }
by: 发表于:2017-12-13 10:33:35 顶(0) | 踩(0) 回复
??
初级程序员
by: 是一只小龙呀 发表于:2021-11-11 20:22:06 顶(0) | 踩(0) 回复
1
by: 发表于:2017-12-13 10:33:35 顶(0) | 踩(0) 回复
??
回复评论