文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Project Euler Problem 28

Project Euler Problem 28

时间:2011-03-22  来源:Ray Z

Starting with the number 1 and moving to the right in a clockwise direction a 5 by 5 spiral is formed as follows:

21 22 23 24 25
20  7  8  9 10
19  6  1  2 11
18  5  4  3 12
17 16 15 14 13

It can be verified that the sum of the numbers on the diagonals is 101.

What is the sum of the numbers on the diagonals in a 1001 by 1001 spiral formed in the same way?

 1 #include <iostream>
 2 using namespace std;
 3 
 4 int main()
 5 {
 6     int sum = 1;
 7     for(int i=3; i<=1001; i=i+2)
 8     {
 9         //top-right
10         sum += i*i;
11 
12         //top-left
13         sum += i*i-i+1;
14 
15         //bottom-left
16         sum += i*i-2*i+2;
17 
18         //bottom-right
19         sum += i*i-3*i+3;
20     }
21 
22     cout << sum << endl;
23     cin.get();
24     return 0;
25 }
相关阅读 更多 +
排行榜 更多 +
打螺丝高手

打螺丝高手

模拟经营 下载
解救火柴人计划安卓版

解救火柴人计划安卓版

体育竞技 下载
鸡生化精英安卓版

鸡生化精英安卓版

飞行射击 下载