您的位置:首页 > 其它

一道通過率超级低的题:CSU - 1006 SAW(电锯惊魂 )

2018-03-29 21:35 369 查看


Description

I want to play a game.Up until now, you've simply sat in front of computers watching others cheer to solve their problems. Now I see you as a strange mix of someone apathetic. But mostly just pathetic. Cause you haven't solved all these problems, at least not this one. So are you going to watch yourself end your warm-up contest here today, or do something about it?These are the rules. I have nothing in the input data. But you, you come up with a capital letter in your mind. Yes, that’s the very letter I want you to output.

Input

Nothing to input. But congratulations. You still have time.Most people are so ungrateful to get ACs. But not you. Not anymore.

Output

Know that I'm not lying. Better hurry up. Output the capital letter in your mind.Make your choice.

Sample Input

(nothing)

Sample Output

(a letter stated above)

代码:

#include<iostream>
#include<time.h>
using namespace std;

int main() {
srand(time(NULL));
putchar(rand() % 26 + 'A');

return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: