比赛 不平凡的世界 评测结果 C
题目名称 不平凡的许愿树 最终得分 0
用户昵称 昵称是什么鬼 运行时间 0.000 s
代码语言 C 内存使用 0.00 MiB
提交时间 2015-11-05 11:32:58
显示代码纯文本
#include<iostream>
#include <cstdio> 
#include<cstdlib>
#include <ctime> 
using namespace std;
int main() 
{ 
	freopen("hopetree.in","r",stdin);
	freopen("hopetree.out","w",stdout);
	int i,k;
	srand( (unsigned)time( NULL ) ); 
	k=rand()%99+100; //这就OK了
	printf( "%d", k ); 
	cout<<' ';
	k=rand()%99+100; //这就OK了
	printf( "%d", k );
     cout<<endl;	
	return 0;
}