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

搜索资源列表

  1. Palindromes-judgment

    0下载:
  2. 输入一段字符,#号结束,判断是否是回文。如果是输出yes,否则输出no。-Input a character,# end, judge is reported. If the output is yes or no output.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:862101
    • 提供者:王震
  1. Palindrome

    0下载:
  2. 回文是指数字或文本正向和逆向读时都一样的文本。例如,下列五位整数都是回文: 12321、55555、45554和11611。写出判断一个五位num为回文的表达式-Palindrome refers to the forward and reverse reading of the numbers or text are the same text. For example, the following five integers are palindromes: 12321,55555,4555
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-26
    • 文件大小:165387
    • 提供者:cgy
  1. Palindromes-judgement-CSharp

    0下载:
  2. 基于C#+winform开发的“回文判定”程序:对于一个从键盘输入的字符串,判断其是否为回文。回文即正反序相同。如“abba”是回文,而“abab”不是回文。此判定程序包含了三种判定方法:1、根据数组元素;2、利用栈先进后出,队列先进先出的特点3、分段检测。(已给出完整的代码注释)-Based on C#+ winform development "palindromes judgement" program: for a keyboard input from the string, deci
  3. 所属分类:CSharp

    • 发布日期:2017-03-31
    • 文件大小:28254
    • 提供者:欧玉斌
  1. huiwen

    0下载:
  2. 判断文章是否是回文类型的程序源代码,回文的判断是左右对称类型的句子-To determine whether the article is a palindrome type of program source code, palindrome judgment is symmetrical type of sentence
  3. 所属分类:Other systems

    • 发布日期:2017-04-02
    • 文件大小:624371
    • 提供者:张华薇
  1. a

    0下载:
  2. 一个数的各位数字倒过来所得到的新数叫原数的反序数. 如果一个数等于它的反序数,则称它为对称数或回文数。 求10000以内的二进制对称数.-The digits of a number of upside down to get a new number called the anti-ordinal number of the original number. If a number is equal to its inverse ordinal number, call it th
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:560
    • 提供者:liuqq
  1. Looking-for-Palindrome-made-several

    0下载:
  2. 寻找并输出11~999之间的数m,它满足m、m的平方、m的立方均为回文数。所谓回文数是指其各位数字左右对称的整数,例如121、676、94249等。满足上述条件的数如 m=11,其平方为121,其立方为1331,皆为回文数。要求编制函数 int svalue(long m)实现此功能,如果是回文数,则函数返回1,反之则返回0。在主函数中将三重回文数输出。-Looking for and output 11 ~ 999 between several m, it satisfies m, m sq
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:614
    • 提供者: 窦垚
  1. huiwen

    0下载:
  2. 利用栈和队列的原理设计一个程序,对输入的字符串进行检测,以判断该字符串是否是回文数据,并输出判断结果。如:“abcxcba”或“abccba”都是回文数据。-Stack and queue principle to design a program to detect the input string to determine whether the string is a palindrome data, and outputs the judgment result. Such as: "a
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:10453
    • 提供者:6218346
  1. huiwen

    0下载:
  2. 实现回文的查找功能,本代码十分简洁,效率较高-it is a function to fullfil huiwen,hign efficiently and easy to grasp
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-24
    • 文件大小:206916
    • 提供者:徐成名
  1. palindromic-number

    0下载:
  2. 如果一个数从左边和从右边读都是相同的数,就称它为回文数,例如383,求出500以内的回文数并输出显示。 -If a number from the left and from the right to read is the same number, he called it reported number, such as 383, and from 500 the number of reported within and the output shown.
  3. 所属分类:assembly language

    • 发布日期:2017-04-13
    • 文件大小:2397
    • 提供者:ma
  1. main

    0下载:
  2. 回文素数(回文数——从左到右和从右到左是看一样的;素数——指在一个大于1的自然数中,除了1和此整数自身外,没法被其他自然数整除的数。) -Prime Palindromes(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 backward). Write a program
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:864
    • 提供者:zhengkaiping
  1. this-is-palindrome

    0下载:
  2. 此程序是用汇编语言编写的“是否是回文程序。”可以直接下载编译。- this is palindrome
  3. 所属分类:assembly language

    • 发布日期:2017-03-29
    • 文件大小:548
    • 提供者:jinger
  1. linklist-opration

    0下载:
  2. 实现链表的基本操作,包括建立,遍历,以及回文数的判定-The basic operation of the linked list
  3. 所属分类:Other systems

    • 发布日期:2017-04-26
    • 文件大小:19865
    • 提供者:mike
  1. jiancehuiwen

    0下载:
  2. 问题描述:对于给定的一个n个字符组成的字符串s,判断其是否为回文,设字符串s为: S:”C1,C2,…….Ci,Ci+1,…..Cn”,则对于P=(n/2),字符串s满足如下条件。 若n为偶数,则有C1=Cn,C2=Cn-1,….,Cp-1=Cp+2,Cp=Cp+1 若n为奇数,则有C1=Cn,C2=Cn-1,….,Cp-1=Cp+3,Cp=Cp+2. -The descr iption of the problem: given an n-character string s
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-02
    • 文件大小:42332
    • 提供者:李新传
  1. huiwen

    0下载:
  2. 采用递归方法编程,检查一个任意给定的字符串是否是回文。-Programming recursion method to check an arbitrary given string is a palindrome.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-10
    • 文件大小:570
    • 提供者:刘亮
  1. B08021118

    0下载:
  2. 大学期末考试重点掌握的小程序,有一些经典的案例在其中,如数组,指针,字符串,回文等等经典的小程序案例。-Master program of the University final exam focus, there are some classic cases in which, such as arrays, pointers, strings, palindromes, etc. classic applet case.
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-10
    • 文件大小:2447267
    • 提供者:
  1. xx

    0下载:
  2. C++ 实现回文函数的应用 .假设称正读和反读都相同的字符序列为“回文”,-this is huiwen function
  3. 所属分类:Other systems

    • 发布日期:2016-01-24
    • 文件大小:1024
    • 提供者:陈淑聪
  1. fanweihuiwenshu

    0下载:
  2. 给定范围,如是几位数,然后在这个范围内求取其中最大的回文数-Given range, in the case of numbers that strike one of the largest palindrome in this range
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-10
    • 文件大小:2419405
    • 提供者:徐剑锋
  1. wo

    0下载:
  2. 用顺序栈实现回文的判断,由用户数任意字符串可做出判断-The palindrome judgment order of the stack
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:1459
    • 提供者:yangtian
  1. JAVA-experiment-3

    0下载:
  2. 1、用循环语句打印一个99乘法表。 2、判断回文数(逆序排列后得到的数和原数相同)。 -1, with a 99 loop Print multiplication table. 2, to determine palindrome (reverse chronological order number and the same number).
  3. 所属分类:Algorithm

    • 发布日期:2017-04-04
    • 文件大小:79536
    • 提供者:郭培源
  1. vb

    0下载:
  2. 编程找出10000以内所有的回文数的平方仍是回文数的数。所谓回文数是指左右数字完全对称的自然数,例如:11,121,1221等都是回文数。-Programming to find the square of the 10000 within the palindrome is a palindrome number. The so-called palindrome is a natural number of the figure is completely symmetrical abou
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:3267
    • 提供者:陈田
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 20 »
搜珍网 www.dssz.com