首页 > 代码库 > Kattis - mixedfractions

Kattis - mixedfractions

Mixed Fractions

You are part of a team developing software to help students learn basic mathematics. You are to write one part of that software, which is to display possibly improper fractions as mixed fractions. A proper fraction is one where the numerator is less than the denominator; a mixed fraction is a whole number followed by a proper fraction. For example the improper fraction 27/12 is equivalent to the mixed fraction 2 3/12. You should not reduce the fraction (i.e. don’t change 3/12 to 1/4).

Input

Input has one test case per line. Each test case contains two integers in the range [1,2311][1,231−1]. The first number is the numerator and the second is the denominator. A line containing 0 00 0 will follow the last test case.

Output

For each test case, display the resulting mixed fraction as a whole number followed by a proper fraction, using whitespace to separate the output tokens.

Sample Input 1Sample Output 1
27 122460000 984003 40000 0
2 3 / 1225 0 / 984000 3 / 4000

题意

把给出的分数化成整数和真分数的形式

代码

#include<bits/stdc++.h>using namespace std;int main() {    long long n, m;    while(cin >> n >> m) {        if(n == m && n == 0)            break;        long long cnt = 0;        if(n >= m) {            cnt = n / m;            n = n - cnt * m;        }        printf("%d %d / %d\n", cnt, n, m);    }}

 

Kattis - mixedfractions