标签:color nbsp and scanf amp 不同 style namespace class
留下复习
#include<cstdio> #include<cstdlib> #include<ctime> using namespace std; int main(){ int l,r,p1.p2; scanf("%d%d",&l,&r); // 1)rand生成在int内的数 p1=rand();printf("%d\n",p1); // 2)rand生成(l,r) 范围内的数 p2=rand()%(r-l+1)+l;printf("%d\n",p2); // 3)srand利用不同种子 srand(time(NULL)); //srand(20011103); p3=rand()%(r-l+1)+l;printf("%d\n",p3); return 0; }
标签:color nbsp and scanf amp 不同 style namespace class
原文地址:https://www.cnblogs.com/asdic/p/9481101.html