交大OJ 1240

Description

Given a fraction m/n, where m and n are both positive integer. As you know, we can disassemble it into Finite Simple CF, that is <x0, x1,x2,…, xn > ,where n is limited.

Your job is to express m/n.

 


这题没啥难的,难能可贵的是我 runtime error了8次。。

下面总结下RE的情况:

1、数组开小了,或者越界了。

2、数字超过int类型

3、出现了除 0的情况 (此题就是这么错的!!)


贴下错误代码:

#include<stdio.h>
long long a[10005];
 
int main()
{
    long long m,n,x,i,t,num;
    while(~scanf("%lld%lld",&n,&m))
    {
        num=0;
        while(1)
        {
            x=n/m;   a[num++]=x;
            n=n%m;  // 如果n=4,m=2,那么出现n=0的情况,交换后m=0,然后 x=n/m=n/0,就RE了
            t=n;n=m;m=t;
            if(n%m==0) {a[num++]=n/m; break;}
        }
 
        for(i=0;i<num;i++)
            if(i!=num-1) printf("%lld ",a[i]);
            else printf("%lld\n",a[i]);
    }
 
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值