小学生趣味C++编程第22课 抽奖

2021-02-18 00:19

阅读:497

标签:cst   需要   srand   编程资料   name   付费   stream   and   return   

小学生c++编程资料

链接:https://pan.baidu.com/s/1FfOirxJ9rrY7rxtHUM4W_A 
提取码:uqm9 

#include
#include      //需要调用time()函数 
#include    //需要调用srand()和rand()函数
using namespace std;
int main()
{
  int n,a;
  cout>n;
  srand(time(0));  //随机种子
  a=rand()%5+1;  //随机产生1至5的整数
  if(n==a)
    cout

  

小学生趣味C++编程第22课 抽奖

标签:cst   需要   srand   编程资料   name   付费   stream   and   return   

原文地址:https://www.cnblogs.com/kixiaoyuan/p/12694997.html


评论


亲,登录后才可以留言!