新建 文本文档.txt
资源名称:fretrt.rar [点击查看]
上传用户:jlttxs
上传日期:2022-08-01
资源大小:1k
文件大小:1k
源码类别:
数学计算
开发平台:
Visual C++
- 所有满足下列条件的分数,
- 1)它大于1/6,小于1/5;
- 2)分子,分母都是素数;
- 3)分母是两位数。
- Scores of all the following conditions,
- 1) it is greater than 1 / 6, less than 1 / 5;
- 2) numerator, denominator are prime numbers;
- 3) the denominator in double digits.
- #include"stdio.h"
- int prime(int n)
- {
- int i;
- for(i=2;i<n;i++)
- if(n%i==0)break;
- return i==n;
- }
- main()
- {
- int a,b;
- float c;
- int prime(int n);
- for(a=2;a<100;a++)
- for(b=11;b<100;b++)
- {
- c=float(a)/b;
- if(c<1.0/5&&c>1.0/6&&prime(a)&&prime(b)&&a<b)
- printf("%d/%dn",a,b);
- }
- }