PersonalCorpus 版 (精华区)

1247775 Big Guava ... 834 Accepted
0:00.000 64 2002/11/19 04:54:16.071

void main()
{
#ifndef ONLINE_JUDGE
    freopen("k:\\uva\\i834","r",stdin);
    freopen("k:\\uva\\o834","w",stdout);
#endif

    int i,j,k,t;
    char s[1000];
    while (scanf("%d%d\n",&i,&j)==2) {
        printf("[%d;",i/j); i%=j;
        while (i!=1) {
            k=i;i=j;j=k;
            printf("%d,",i/j);
            i%=j;
        }
        printf("%d]\n",j);
    }
}
[百宝箱] [返回首页] [上级目录] [根目录] [返回顶部] [刷新] [返回]
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:2.021毫秒