代码搜索:palindrome

找到约 187 项符合「palindrome」的源代码

代码结果 187
www.eeworm.com/read/429569/8802551

java palindrome.java

public class Palindrome { public static boolean isPalindrome(String stringToTest) { String workingCopy = removeJunk(stringToTest); String reversedCopy = reverse(workingCopy);
www.eeworm.com/read/457187/7333017

frm palindrome.frm

www.eeworm.com/read/440253/7691477

asm palindrome.asm

; This sample checks if string ; is a palindrome. #make_COM# ORG 100h jmp start s DB 'aaabbbaaa' s_size DW 9 start: LEA DI, s MOV SI, DI ADD SI, s_size DEC SI ; point to last c
www.eeworm.com/read/326351/13145904

class palindrome.class

www.eeworm.com/read/326351/13145907

java palindrome.java

package palindrome; import java.io.*; public class Palindrome { public static void main(String[]args) { //主函数 int m=0; String c; Inte data=new Inte(); c=new String(); System.out.
www.eeworm.com/read/240680/13205478

c-- palindrome.c--

int main() { int a[5]; int b[4]; int c[3]; a[0] = 1; a[1] = 5; a[2] = 3; a[3] = 5; a[4] = 1; write palindrome(a, 0, 4); writeln; b[0] = 9; b[1] = 7; b[2] = 6; b[3] = 9;
www.eeworm.com/read/143286/5758455

jcp palindrome.jcp

! ** JCreator Project File (C)2000 ! ********** DO NOT EDIT ********* VERSION := "1.10" LABEL := "Palindrome" JDKPROFILE := "" ACTIVE := "1" OUTPUTPATH := "classes" COMPILER := "" ! Start
www.eeworm.com/read/143286/5758456

jcw palindrome.jcw

! ** JCreator Workspace File (C)2000 ! ********** DO NOT EDIT ********* VERSION := "1.00" LABEL := "Palindrome" ! Start Project Structure #[BeginProject]SOURCE := "Palindrome.jcp" #[EndProjec
www.eeworm.com/read/143286/5758458

java palindrome.java

import java.io.*; import java.util.*; public class Palindrome { public static void main (String[] args) { String s = ""; System.out.print("please enter a string:"); try { Buffer