| 比赛 | “Asm.Def战记之拉格朗日点”杯 | 评测结果 | RRRRRRRRRR |
|---|---|---|---|
| 题目名称 | Asm.Def的打击序列 | 最终得分 | 0 |
| 用户昵称 | Tear smile | 运行时间 | 0.005 s |
| 代码语言 | C++ | 内存使用 | 0.32 MiB |
| 提交时间 | 2015-11-04 11:59:54 | ||
#include <iostream>
#include <cstdio>
#include <stdlib.h>
#include <time.h>
using namespace std;
int main()
{
freopen("asm_contribute.in","r",stdin);
freopen("asm_contribute.out","w",stdout);
srand((unsigned)time(NULL));
for(int i = 0; i < 10;i++ )
{
printf("%d",rand()%100);
}
/*随机数VS随机数 */
return 0;
}