high school d×d第二季啥时候出

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了high school d×d第二季啥时候出相关的知识,希望对你有一定的参考价值。

参考技术A 官方已经确定会出第2季,希望制作阵容不变,故事内容紧接第一季!播出具体时间未定!

high school d×d第二季官网暂无发布资源,待出资源后本站将第一时间添加供广大漫迷观看,敬请期待!

High School: Become Human(数学思维)

Year 2118. Androids are in mass production for decades now, and they do all the work for humans. But androids have to go to school to be able to solve creative tasks. Just like humans before.

It turns out that high school struggles are not gone. If someone is not like others, he is bullied. Vasya-8800 is an economy-class android which is produced by a little-known company. His design is not perfect, his characteristics also could be better. So he is bullied by other androids.

One of the popular pranks on Vasya is to force him to compare xyxy with yxyx. Other androids can do it in milliseconds while Vasya‘s memory is too small to store such big numbers.

Please help Vasya! Write a fast program to compare xyxy with yxyx for Vasya, maybe then other androids will respect him.

Input

On the only line of input there are two integers xx and yy (1x,y1091≤x,y≤109).

Output

If xy<yxxy<yx, then print ‘<‘ (without quotes). If xy>yxxy>yx, then print ‘>‘ (without quotes). If xy=yxxy=yx, then print ‘=‘ (without quotes).

Examples
input
Copy
5 8
output
Copy
>
input
Copy
10 3
output
Copy
<
input
Copy
6 6
output
Copy
=
Note

In the first example 58=55555555=39062558=5⋅5⋅5⋅5⋅5⋅5⋅5⋅5=390625, and 85=88888=3276885=8⋅8⋅8⋅8⋅8=32768. So you should print ‘>‘.

In the second example 103=1000<310=59049103=1000<310=59049.

In the third example 66=46656=6666=46656=66. 

题目意思:给你两个数x, y, 比较 x^y 和 y ^ x 的大小

解题思路:

 

#include<cstdio>
#include<cmath>
int main()
{
    int x,y;
    scanf("%d%d",&x,&y);
    if(log(x)*y>log(y)*x)
    {
        printf(">
");
    }
    else if(log(x)*y<log(y)*x)
    {
        printf("<
");
    }
    else
    {
        printf("=
");
    }
   return 0;
}

 

以上是关于high school d×d第二季啥时候出的主要内容,如果未能解决你的问题,请参考以下文章

2019 DISCS PrO High School Division

D - Counterfeit Dollar(第二季水)

PAT乙级1032 挖掘机技术哪家强 (20 分)

嗜血狂袭第二季现在有消息吗

换乘恋爱有第二季吗

CodeForces866D. Buy Low Sell High