标签:自己 关键字 基本 div rand 逻辑 基本语法 int nbsp
基本语法:
1 int B = rand() % 100; //此时是取0~99中任意数
若想自己拟定,比如取1~100,则应:
此时为取1~100中任意数
int B = rand() % 100 + 1;
取4~200:
int B = rand() % 197 + 4;
按照逻辑计算出数字即可
标签:自己 关键字 基本 div rand 逻辑 基本语法 int nbsp
原文地址:https://www.cnblogs.com/xt112233/p/13112373.html