码迷,mamicode.com
首页 > 其他好文 > 详细

题目编号生成器

时间:2016-06-12 16:53:45      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

【程序描述】

利用C++随机函数编写了此程序,用于神犇们在CodeVS上灵活地攻坚克难,检验他们自己的超高水平。

【操作描述】

F11。

【结果描述】
一个CodeVS(www.codevs.cn)网站中题目的ID编号(可能无此题,请重试新的输出)。
源代码:

#include<cstdio>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
    printf("< Copyright by X-Axis >\n\n");
    printf("Just a remider:\n    This is for your reference only.\n\n\n");
    printf("CodeVS Problem ID : ");
    srand(time(0));
    while (1)
    {
          int t=rand()%10;
          if (t<5&&t)
          {
                printf("%d",t);
                break;
          }
    }
    for (int a=0;a<3;a++)
      printf("%d",rand()%10);
    printf("\n\n");
    return 0;
}

题目编号生成器

标签:

原文地址:http://www.cnblogs.com/Ackermann/p/5578059.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!