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

Problem 4

 
阅读更多
A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is 9009 = 91  99.

Find the largest palindrome made from the product of two 3-digit numbers.



找到满足一下两个条件的数
1.回文数
2.由两个三位数相乘可得

//判断是否是回文数
	public static boolean is_palindrome(int number){
		String numStr = String.valueOf(number);
		char high =1; //保存最高位
		char low =1; //保存最低位
		do{
			high = numStr.charAt(0);
			low = numStr.charAt(numStr.length()-1);
			if(high!=low){
				return false;
			}
			numStr = numStr.substring(1,numStr.length()-1);
		}while(high==low&&numStr.length()>1);
		return true;
	}
	
	public int findLargestPalindrome(){
		int begin = 100;
		int end = 1000;
		int max = 0;
		for(int i=begin; i<end;i++){
			for(int j=begin; j<end; j++){
				int value = i*j;
				if(is_palindrome(value)&&value>max)
					max = value;
			}
		}
		return max;
	}
	
分享到:
评论

相关推荐

    预测柱状图内容走势:Problem4.zip

    预测柱状图内容走势:Problem4.zip 预测柱状图内容走势:Problem4.zip 预测柱状图内容走势:Problem4.zip 预测柱状图内容走势:Problem4.zip 预测柱状图内容走势:Problem4.zip 预测柱状图内容走势:Problem4.zip ...

    problem4.py

    problem4.py

    problem4_1111.m

    problem4_1111.m

    numpy-numpy使用示例之problem4.zip

    numpy numpy_numpy使用示例之problem4

    leetcode problem 4

    leetcode problem 4 的三种实现方法及测试

    week1_problem4:创世纪MBD提交的第1周第4个问题,由唯一ID 2005546 Gauri M Kulkarni

    通常,"week1_problem4"可能指的是一个编程或技术挑战的第四部分,可能与编程语言、数据结构、算法或其他计算机科学概念有关。 压缩包的文件名称列表"week1_problem4-master"暗示可能包含的是一个代码仓库的主分支...

    Computer-Based.Problem.Solving.Process

    Title: Computer-Based Problem Solving Process Author: Teodor Rus Length: 350 pages Edition: 1 Language: English Publisher: World Scientific Publishing Company Publication Date: 2015-05-30 ISBN-10: ...

    Wicked Problem

    ### Wicked Problem与Wicked Environmental Problem #### 一、引言 "Wicked Problem"(棘手问题)这一概念最初由霍恩(Horst Rittel)和韦伯(Melvin Webber)于1973年提出,指的是那些复杂且难以解决的问题。这类...

    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

    4. 条件语句:WHERE 子句(Problem 4) WHERE 子句用于指定 SELECT 语句的条件,以便仅检索满足条件的数据。 5. 创建表语句:CREATE TABLE 语句(Problem 5) CREATE TABLE 语句用于创建一个新的表,包括指定表名...

    Problem Arrangement zoj 3777

    Problem Arrangement zoj 3777

    python-lxml-3.2.1-4.el7.x86_64.rpm

    离线安装包,亲测可用

    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 4**:问题涉及到条件极值转化为无条件极值的问题,这在优化理论中很常见,尤其是在概率和统计推断中,如最大似然估计或贝叶斯推断。 **Problem 5**:提到了Representer Theorem,这是核方法中的一个重要...

    Problem_C_Data.zip

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

    problem set 4.zip

    problem set 4.zip

Global site tag (gtag.js) - Google Analytics