zoukankan      html  css  js  c++  java
  • Project Euler:Problem 33 Digit cancelling fractions

    The fraction 49/98 is a curious fraction, as an inexperienced mathematician in attempting to simplify it may incorrectly believe that49/98 = 4/8, which is correct, is obtained by cancelling the 9s.

    We shall consider fractions like, 30/50 = 3/5, to be trivial examples.

    There are exactly four non-trivial examples of this type of fraction, less than one in value, and containing two digits in the numerator and denominator.

    If the product of these four fractions is given in its lowest common terms, find the value of the denominator.



    #include <iostream>
    using namespace std;
    
    int gcd(int a, int b)
    {
    	while (b)
    	{
    		if (a < b)
    		{
    			int tmp = b;
    			b = a;
    			a = tmp;
    		}
    		int t = b;
    		b = a % b;
    		a = t;
    	}
    	return a;
    }
    
    int main()
    {
    	int fz = 1;
    	int fm = 1;
    	int res;
    	for (int x = 10; x <= 98; x++)
    	{
    		for (int y = x + 1; y <= 99; y++)
    		{
    			int a = x / 10;
    			int b = x % 10;
    			int c = y / 10;
    			int d = y % 10;
    			if ((b - c) == 0 && (y*a == x*d) && (d != 0))
    			{
    				fz *= a;
    				fm *= d;
    			}
    		}
    	}
    	res = fm / gcd(fz, fm);
    	cout << res << endl;
    	system("pause");
    	return 0;
    }
    


  • 相关阅读:
    python字典实现原理-哈希函数-解决哈希冲突方法
    ElasticSearch-倒排索引
    ElasticSearch-核心概念
    MarkdownPad2基础语法
    下载python3.6,进行编译安装,运行django程序
    linux-指令1
    注解和反射
    Htlm和Css
    JAVASE加强
    网络编程
  • 原文地址:https://www.cnblogs.com/llguanli/p/6936387.html
Copyright © 2011-2022 走看看