CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 回文数

搜索资源列表

  1. C源代码实例

    8下载:
  2. 包含220个C语言的各种源程序:001 第一个C程序 002 运行多个源文件 003 求整数之积 004 比较实数大小 005 字符的输出 006 显示变量所占字节数 007 自增/自减运算 008 数列求和 009 乘法口诀表 010 猜数字游戏 011 模拟ATM(自动柜员机)界面 012 用一维数组统计学生成绩 013 用二维数组实现矩阵转置 014 求解二维数组的最大/最小元素 015 利用数组求前n个
  3. 所属分类:Windows编程

    • 发布日期:2009-06-04
    • 文件大小:3250828
    • 提供者:79446210
  1. WL40987330 C语言算法集

    2下载:
  2. 目录 第一部分  基础篇   001  第一个C程序  002  运行多个源文件  003  求整数之积  004  比较实数大小  005  字符的输出  006  显示变量所占字节数  007  自增/自减运算  008  数列求和  009  乘法口诀表  010&
  3. 所属分类:Windows编程

    • 发布日期:2008-12-21
    • 文件大小:3245365
    • 提供者:wl409873350
  1. huiwenshu.rar

    0下载:
  2. 判断一个整数N 是不是回文数(10 进 制和2 进制都要是回文):例如1,3,5 都 满足条件。,Determine an integer number N is not a palindrome (10 M and 2 M to be the palindrome): for example, have to meet conditions 1,3,5.
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-27
    • 文件大小:885829
    • 提供者:007
  1. mm

    0下载:
  2. 若一个数(首位不为零)从左向右读与从右向左读都一样,我们就将其称之为回文数。 例如:给定一个10进制数56,将56加65(即把56从右向左读),得到121是一个回文数。 又如:对于10进制数87: STEP1:87+78 = 165 STEP2:165+561 = 726 STEP3:726+627 = 1353 STEP4:1353+3531 = 4884 在这里的一步是指进行了一次N进制的加法,上例最少用了4步得
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-21
    • 文件大小:938
    • 提供者:ss
  1. pprime

    0下载:
  2. 因为151即是一个质数又是一个回文数(从左到右和从右到左是看一样的),所以 151 号是回文质数。 写一个程序来找出范围[a,b](5 <= a < b <= 100,000,000)间的所有回文质数 -The number 151 is a prime palindrome because it is both a prime number and a palindrome (it is the same number when read forward as backw
  3. 所属分类:MacOS develop

    • 发布日期:2017-03-21
    • 文件大小:1323
    • 提供者:王豪究
  1. java_2222.rar

    0下载:
  2. 回文数问题。如果一个数按反向顺序放置后仍然相等,称为回文数(如: 12321)。编程:任意输入一个数据,判断此数是否为回文数。,Palindrome number of issues. If a few by the reverse is still the same after placing the order, known as the palindrome number (eg: 12,321). Programming: an arbitrary input data, to dete
  3. 所属分类:Java Develop

    • 发布日期:2017-04-03
    • 文件大小:1764
    • 提供者:李残月
  1. huiwen

    0下载:
  2. 实现了回文数的查询,显示1到1000的回文数,自己查询数,程序可以做出判断!-Achieved a palindrome number of inquiries, show the palindrome 1-1000 number of their queries, procedures can be made to judge!
  3. 所属分类:Java Develop

    • 发布日期:2017-04-02
    • 文件大小:824
    • 提供者:郭宏光
  1. test25

    0下载:
  2. 回文素数序列 查找两个正整数 m 和n 之间既是素数又是回文数的所有数(包括m 和 n),其中,m 不大于n。并按从小到大顺序输出这些数,如果 没有这样的数,则输出 no (回文数是正向看和逆向看相等的数,如,123321,121)。 -i think it is good for you
  3. 所属分类:Game Program

    • 发布日期:2017-04-03
    • 文件大小:7576
    • 提供者:zhaowei
  1. Algorithm

    0下载:
  2. 回文数计算: 编写一个程序,输入N(2=N=16)进制数M(1=M=30000(10进制)),输出最少经过几步可以得到回文数。如果在30步以内(含30步)不可能得到回文数,则输出0。输入的数保证不为回文数。-None
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-17
    • 文件大小:327877
    • 提供者:tonysong
  1. Practice1_15

    0下载:
  2. 找出回文数,就是在一定范围内找出顺读和倒读都一样的词语。-Palindrome identify a few, that is, a certain scope to identify cis and read back the words read are the same.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:933
    • 提供者:zfm850722
  1. Java

    0下载:
  2. 编写一个java应用程序。用户从键盘输入一个1-9999之间的数,程序将判断这个数是几位数,并判断这个数是否回文数。回文数是指将数含有的数字逆序排列后得到的数和原数相同,例如12121,4224,6778776等都是回文数。 1)程序具有判断用户的输入是否为合法整数的功能。对非法输入(例如含有字母)要进行处理。 2)要判断输入数的位数,并输出相关信息。 3)要判断是否回文数。 二、二战期间,英国情报人员获取德军的一机密电报,电报的内容为: bzdz izu sxgzd
  3. 所属分类:Java Develop

    • 发布日期:2017-04-17
    • 文件大小:74854
    • 提供者:king
  1. PalindromeNumber

    0下载:
  2. 回文数就是从高位往低位读,和从低位往高位读是相同的,例如:131,1221等,此程序是寻找m,要求m,m*m,m*m*m,这三个值都是回文数。-Palindrome number is read from a high level to low and from low to high time is the same as, for example: 131,1221 and so on, this procedure is to find m, the requirements m, m*
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-15
    • 文件大小:7087
    • 提供者:白秋杨
  1. 018

    0下载:
  2. 用于判断正整数n的d进制数表示形式是否是回文数-tell the positive integers n is a Palindromic Number
  3. 所属分类:CSharp

    • 发布日期:2017-04-29
    • 文件大小:7980
    • 提供者:査锦
  1. hui

    0下载:
  2. 编程求100到999之间的回文数.(回文数是指正读与反读都一样的数,如:232)-Programming for between 100-999 palindrome number. (Number palindrome correction and anti-time reading the same few, such as: 232)
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:2383
    • 提供者:时攀
  1. text

    0下载:
  2. 数据结构严蔚敏版第三章部分习题答案 栈的基本操作,算法 括号匹配 回文数判断 等 完整工程 vc++开发环境-YAN Wei-min data structure version of Chapter III of part of the answer to exercise the basic operation of the stack, the algorithm to determine the number of brackets, such as matchi
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-03
    • 文件大小:775359
    • 提供者:Emily
  1. 519

    0下载:
  2. 输入一个数,选择判断是平方数,回文数还是素数。-Enter a number, select the square to determine the number of prime numbers or the number palindrome.
  3. 所属分类:source in ebook

    • 发布日期:2017-04-05
    • 文件大小:270560
    • 提供者:黄梓能
  1. Number

    0下载:
  2. 本程序用于回文数的判断,输入一位数字,可以判断其是否为回文数字,不是返回提示-This procedure used to determine palindrome number, enter a single digit, you can determine whether the palindrome figures, not to return to prompt
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:741
    • 提供者:doudoutu
  1. huiwenshu

    0下载:
  2. 回文数的判断,用栈和队列做的!希望大家可以互相交流一下-Palindrome number of judgments, with stacks and queues to do! Hope that we can exchange what
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:89794
    • 提供者:walter
  1. huiwenshu

    0下载:
  2. 1-99999位数回文数判断,银行管理包括利率,密码,剩余额-1-99999 digit palindrome number of judgments, bank management, including interest rates, passwords, the remaining amount of
  3. 所属分类:Java Develop

    • 发布日期:2017-04-13
    • 文件大小:2750
    • 提供者:陈玲
  1. Number

    0下载:
  2. 编写一个java应用程序。用户从键盘输入一个1-9999之间的数,程序将判断这个数是几位数,并判断这个数是否回文数。回文数是指将数含有的数字逆序排列后得到的数和原数相同,例如12121,4224,6778776等都是回文数。-Write a java application. The user from the keyboard to enter a number between 1-9999, the program will determine whether this number is
  3. 所属分类:Java Develop

    • 发布日期:2017-03-26
    • 文件大小:790
    • 提供者:hhf
« 1 23 4 5 6 7 8 »
搜珍网 www.dssz.com