2.1.2---Ordered Fractions

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.

PROGRAM NAME: frac1

INPUT FORMAT

One line with a single integer N.

SAMPLE INPUT (file frac1.in)
/*
ID:******
PROG:frac1
LANG:C++
*/
#include <algorithm>
#include <iostream>
#include <fstream>
using namespace std;

#define N 161
int n;//分母最大值
int coun;//结果规模
struct frac{//分数结构体
	int num,deno;
}f[13041];

//重定义比较函数
bool cmp(frac const &a, frac const &b){
	return a.num*1.0/a.deno < b.num*1.0/b.deno;
}
//求公约数
int gcd(int a,int b){
	if(!b)
		return a;
	return gcd(b,a%b);
}
//生成符合要求的全部分数(不需排序)
void getfraction(){
	coun = 0;
	f[coun].num = 0;
	f[coun].deno = 1;
	coun ++;
	f[coun].num = 1;
	f[coun].deno = 1;
	coun ++;
	for(int i = 2;i <= n; i++)
		for(int j = 1;j < i;j ++)
			if(gcd(i,j) == 1){
				f[coun].num = j;
				f[coun].deno = i;
				coun ++;
			}
}

int main(){
	ofstream fout ("frac1.out");
	ifstream fin ("frac1.in");
	fin >> n;
	getfraction();
	sort(f,f+coun,cmp);//递增排序
	for(int i = 0;i < coun;i ++)
		fout<<f[i].num<<'/'<<f[i].deno<<endl;
	return 0;
}

5

OUTPUT FORMAT

One fraction per line, sorted in order of magnitude.

SAMPLE OUTPUT (file frac1.out)

0/1
1/5
1/4
1/3
2/5
1/2
3/5
2/3
3/4
4/5
1/1

                
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值