Pro.ID10129 TitleOrdered Fractions Title链接http://10.20.2.8/oj/exercise/problem?problem_id=10129 AC131 Submit221 Ratio59.28% 时间&空间限制描述Consider the set of all reduced fractions between 0 and 1 inclusive with denominators less than or equal to N. Here is the set when N = 5: 0/1 1/5 1/4 1/3 2/5 1/2 3/5 2/3 3/4 4/5 1/1 Write a program that, given an integer N between 1 and 160 inclusive, prints the fractions in order of increasing magnitude. 输入Mulitple test case, each case has one line with a single integer N. 输出Description Consider the set of all reduced fractions between 0 and 1 inclusive with denominators less than or equal to N. Here is the set when N = 5: 0/1 1/5 1/4 1/3 2/5 1/2 3/5 2/3 3/4 4/5 1/1 Write a program that, given an integer N between 1 and 160 inclusive, prints the fractions in order of increasing magnitude. Input Mulitple test case, each case has one line with a single integer N. Output For each case, output the answer : one fraction per line, sorted in order of magnitude. Output a blank line after each case. Sample Input 5 Sample Output 0/1 Source 样例输入5 样例输出0/1 作者 |