摘要: rand()函数 #include "stdio.h" #include "stdlib.h" #include "time.h" int main(){ int i,num; srand(time(0)); for(i=0;i<10;i++){ num=rand()%10+1; printf("% 阅读全文
posted @ 2022-11-08 15:03 有何和不可 阅读(68) 评论(0) 推荐(0)