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 0 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 1 Sample Output 1
27 12
2460000 98400
3 4000
0 0
2 3 / 12
25 0 / 98400
0 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);
    }
}

 

相关文章:

  • 2022-12-23
  • 2022-02-01
  • 2021-08-22
  • 2021-07-28
  • 2022-01-11
  • 2022-01-14
  • 2021-06-05
  • 2022-02-25
猜你喜欢
  • 2021-12-04
  • 2021-10-16
  • 2021-08-21
  • 2021-06-16
  • 2021-08-12
  • 2022-01-28
  • 2021-06-14
相关资源
相似解决方案