In the card game poker, a hand consists of five cards and are ranked, from lowest to highest, in the following way: High Card: Highest value card.One ...
分类:
其他好文 时间:
2017-06-16 16:39:29
阅读次数:
170
The fraction 49/98 is a curious fraction, as an inexperienced mathematician in attempting to simplify it may incorrectly believe that49/98 = 4/8, whic ...
分类:
其他好文 时间:
2017-06-03 11:22:40
阅读次数:
178
Triangle, square, pentagonal, hexagonal, heptagonal, and octagonal numbers are all figurate (polygonal) numbers and are generated by the following for ...
分类:
其他好文 时间:
2017-05-25 10:10:28
阅读次数:
169
今天花了一天的时间在Linux 系统上完成了欧拉计划第13题的Larger Sum编程(花费的时间有点长啊)。既然耗了这么长的时间,那就要好好的总结一下,不然也对不起这一天的时间。这次主要是在ubantu 上编程,简单的设计到了编译、调试、链接和简单的编写Makefile。 Larger Sum 中 ...
分类:
其他好文 时间:
2017-05-13 10:05:10
阅读次数:
226
题意须要注意的一点就是, 序列是从外层最小的那个位置顺时针转一圈得来的。而且要求10在内圈 所以,这题暴力的话,假定最上面那个点一定是第一个点,算下和更新下即可。 #include <iostream> #include <cstring> #include <cstdio> #include <a ...
分类:
其他好文 时间:
2017-05-12 22:25:00
阅读次数:
129
For a number written in Roman numerals to be considered valid there are basic rules which must be followed. Even though the rules allow some numbers t ...
分类:
其他好文 时间:
2017-04-28 13:47:36
阅读次数:
106
It is possible to write five as a sum in exactly six different ways: 4 + 1 3 + 2 3 + 1 + 1 2 + 2 + 1 2 + 1 + 1 + 1 1 + 1 + 1 + 1 + 1 How many differen ...
分类:
其他好文 时间:
2017-04-17 11:34:33
阅读次数:
151
本题来自 Project Euler 第21题:https://projecteuler.net/problem=21 首先需要明确两个数学概念: 真因数(proper divisor):除去数字本身的所有因数(不要求是素数)。比如:12的所有真因数是:1、2、3、4、6 亲和数(amicable ...
分类:
编程语言 时间:
2016-11-20 00:02:46
阅读次数:
306
本题来自 Project Euler 第20题:https://projecteuler.net/problem=20 这题也容易,让先算出阶乘100的结果,然后把这结果的每个数字相加即可。 我想,应该是要练习递归阶乘吧,但我觉得用循环也挺方便的啊,就是很讨厌递归函数,总记不住写法,唉…… ...
分类:
编程语言 时间:
2016-11-19 23:30:43
阅读次数:
251