`
to_zoe_yang
  • 浏览: 143391 次
  • 性别: Icon_minigender_2
  • 来自: 01
社区版块
存档分类
最新评论

Problem 6

 
阅读更多
问题描述:
The sum of the squares of the first ten natural numbers is,

12 + 22 + ... + 102 = 385
The square of the sum of the first ten natural numbers is,

(1 + 2 + ... + 10)2 = 552 = 3025
Hence the difference between the sum of the squares of the first ten natural numbers and the square of the sum is 3025  385 = 2640.

Find the difference between the sum of the squares of the first one hundred natural numbers and the square of the sum.



	//求平方和 
	public long squares_sum(int number){
		long result = 0;
		
		for(int i=1; i<=number; i++){
			result += i*i;
		}
		return result;
	}
	//求和的平方
	public long sum_squares(int number){
		long result = (number*(number+1))/2;
		return result*result;
	}
	
	public long count(int number){
		return sum_squares(number)-squares_sum(number);
	}
分享到:
评论

相关推荐

    numpy-numpy使用示例之problem6.zip

    numpy numpy_numpy使用示例之problem6

    problem6.m

    倒频系统实现信号的加密解密,

    爱立信CSR数据采集规范

    6. OMS statistics problem 6 7. HLR redundancy problem 6 8. MRBT related problem 7 9. USSD related problem 7 10. Announcement problem 7 11. Echo canceller (ECP) problem 8 12. DTI problem 8 13. Group ...

    Computer-Based.Problem.Solving.Process

    Chapter 6. Functional Behavior of Hardware Components Chapter 7. Algorithmic Expression of a Hardware System Chapter 8. Using Computers to Solve Problems Part 3 Software Tools Supporting Program ...

    Wicked Problem

    6. **无单一解决方案**:不存在一个单一的解决方案可以适用于所有情况,需要根据不同情境采取不同的策略。 #### 三、Wicked Environmental Problem的概念 环境领域的棘手问题(Wicked Environmental Problem)是指...

    Problem Solving with C++, 10th Global Edition

    Problem Solving with C++, Global Edition by Walter Savitch (author) (Author) Pages:1117 出版社: Pearson Education Limited; 10th edition edition (November 20, 2017) Language: English ISBN-10: ...

    problem

    标题 "problem" 提供的信息较少,但从描述中的 "NULL 博文链接:https://eric0000.iteye.com/blog/322311" 可以推测,这可能是一个关于解决某个问题或者技术讨论的博客文章链接。由于没有具体的博文内容,我们无法...

    node-problem-detector-0.8.7.tar

    node-problem-detector 镜像包 v0.8.7 版本

    MCM 2012 problem A B C 论文

    MCM 2012年 problem A problem B problem C 枪手论文

    MySQL数据库考试试题.docx

    6. 删除列:ALTER TABLE 语句(Problem 6) ALTER TABLE 语句可以用来删除一个表中的列,例如 ALTER TABLE emp DROP COLUMN addcolumn; 7. 删除表:DROP TABLE 语句(Problem 7) DROP TABLE 语句用于删除一个表...

    Problem Arrangement zoj 3777

    Problem Arrangement zoj 3777

    Data Abstraction and Problem Solving with C++(6th) 无水印pdf

    Data Abstraction and Problem Solving with C++(6th) 英文无水印pdf 第6版 pdf所有页面使用FoxitReader和PDF-XChangeViewer测试都可以打开 本资源转载自网络,如有侵权,请联系上传者或csdn删除 本资源转载自...

    Problem Solving with C++(9th) 无水印pdf

    Problem Solving with C++(9th) 英文无水印pdf 第9版 pdf所有页面使用FoxitReader和PDF-XChangeViewer测试都可以打开 本资源转载自网络,如有侵权,请联系上传者或csdn删除 本资源转载自网络,如有侵权,请...

    算法设计taxi problem

    算法设计里关于taxi problem的C语言代码

    台大机器学习作业六1

    **Problem 6**:这部分可能是要求展开并求解一个表达式,涉及到多元函数的偏导数计算,可能与梯度或Hessian矩阵的计算相关。 **Problem 7**:描述了最小二乘法(Least Squares Method)的解法,用于拟合线性模型,...

    Problem_C_Data.zip

    "Problem_C_Data.zip" 是一个压缩包文件,包含2020年美国数学建模竞赛(简称美赛)C题的题目及相应的原始数据。美赛是一项国际性的数学建模竞赛,每年吸引众多学生参与,旨在提升参赛者的数学、数据分析和解决实际...

    Problem 1002

    HDOJ Problem 1001 C++版

    master page search problem

    在这个特定的问题“master page search problem”中,我们可能遇到的是在使用Master Page时搜索功能出现的问题。ViewData是ASP.NET MVC框架中的一个特性,用于在控制器和视图之间传递数据,而JavaScript则是客户端...

    machine problem

    在操作系统课程中,"机器问题"(Machine Problem)通常指的是与计算机硬件、系统架构以及操作系统内核相关的复杂问题。这些问题涉及到资源管理、并发控制、进程调度、内存分配等多个核心概念,是理解操作系统工作...

    euler project.r.zip_R Euler project_project

    6. **Problem 6: 平方和与平方和的差** - 知识点:平方运算,数组操作,数值计算。 - 解决方法:计算1到100的平方和以及其和的平方,然后相减得到结果。 7. **Problem 7: 第10001个质数** - 知识点:质数判断,...

Global site tag (gtag.js) - Google Analytics