博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Largest palindrome product
阅读量:6694 次
发布时间:2019-06-25

本文共 1357 字,大约阅读时间需要 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.

译文:

 
利用相同的方法寻找回文数。两个2位数字的乘积的最大回文是9009=91×99。
得到两个3位数字的乘积的最大回文。
1 import java.util.ArrayList; 2 import java.util.List; 3  4 public class Main 5 { 6     public static void main(String[] args)    7     { 8         List
list = new ArrayList
(); 9 int a=0;10 for(int i=99;i<1000;i++)11 {12 for(int j=99;j<1000;j++)13 {14 list.add(j*i);15 }16 }17 List
lis = new ArrayList
();18 for(int i=0;i
100000)21 {22 if(list.get(i) % 10 ==list.get(i) / 100000 && (list.get(i) /10)% 10 ==(list.get(i) / 10000)%10 && (list.get(i) / 1000)%10 ==(list.get(i) / 100)%10)23 {24 lis.add(list.get(i));25 }26 }27 }28 int max=lis.get(0);29 for(int i=0;i

结果:

906609

posted on
2016-08-22 17:01 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/niithub/p/5796252.html

你可能感兴趣的文章
Interested Transaction List ( ITL ) in Oracle
查看>>
Spring
查看>>
C#委托基础7——匿名方法
查看>>
3. 文件系统——创建、删除分区和内核同步分区信息
查看>>
配置防火墙 允许或阻止被Ping和设置方法
查看>>
Python集合
查看>>
磁盘管理
查看>>
我的友情链接
查看>>
Centos 6.3 install Darwin Streaming Server 6.0.3
查看>>
个人博客的推广
查看>>
MVC-Easy-UI-datagrid-分页-查询
查看>>
嘉协达ARM服务器:“省”字当头
查看>>
网宿云分发:公有云与用户之间的桥梁
查看>>
VNC安装
查看>>
我的友情链接
查看>>
页面内容显示不全问题的解决办法
查看>>
交换机的原理及VTP
查看>>
我的友情链接
查看>>
【JSP】JSP与Servlet的区别
查看>>
Lapm+xcache安装wordpress
查看>>