牛客假日训练第一场J题

链接:https://ac.nowcoder.com/acm/contest/881/J
来源:牛客网

题目描述

Bobo has two fractions xaxa and ybyb. He wants to compare them. Find the result.

输入描述:

The input consists of several test cases and is terminated by end-of-file.

Each test case contains four integers x, a, y, b.

* 0x,y10180≤x,y≤1018
* 1a,b1091≤a,b≤109
* There are at most 105105 test cases.

输出描述:

For each test case, print `=` if xa=ybxa=yb. Print `<` if xa<ybxa<yb. Print `>` otherwise.
示例1

输入

复制
1 2 1 1
1 1 1 2
1 1 1 1

输出

复制
<
>
=


到现在都不知道自己哪里错了!!
这是答案错误的
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include<iostream>
#include<string.h>
#include<cstdio>
const int Maxn=1e+9;
using namespace std;
int main(){
     long long x,a,y,b;
     while ( scanf ( "%lld %lld %lld %lld" ,&x,&a,&y,&b)!=EOF){
         long long m=((x%Maxn)*(b%Maxn))%Maxn;
         long long n=((y%Maxn)*(a%Maxn))%Maxn;
         if (m<n)cout<< "<" <<endl;
         else if (m>n)cout<< ">" <<endl;
         else if (m==n)cout<< "=" <<endl;
    
     return 0; 
}

这个是正确的,还请看到的大佬指点一下我这个菜鸡,真不知道哪里错了!!(欲哭无泪),非常感谢

 

#include<iostream>
#include<string.h>
#include<cstdio>
using namespace std;
int main(){
long long x,a,y,b;
while(scanf("%lld %lld %lld %lld",&x,&a,&y,&b)!=EOF){
if(x*b-y*a<0)cout<<"<"<<endl;
else if(x*b>y*a)cout<<">"<<endl;
else if(x*b-y*a==0)cout<<"="<<endl;
}
return 0;
}

转载于:https://www.cnblogs.com/dingchenyang/p/11219236.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值