生成1-100随机数并进行猜测
C++生成随机数并进行猜测通过循环结构判断输入与随机数是否一致:不一致则无限循环输入,一致则结束#include <iostream>#include <ctime>using namespace std;int main(){ //添加随机数种子 srand((unsigned int)time(NULL)); //1.系统生成随机数 int num=rand()%100; //cout<<num&l