Search found 1 match

by mirak
Thu Feb 07, 2013 11:57 am
Forum: Volume 3 (300-399)
Topic: 353 - Pesky Palindromes
Replies: 43
Views: 20442

Re: 353 --- Nice Tests...

import java.io.*;
import java.util.Formatter;
import java.util.Scanner;

public class Training {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
String output = "";
while (input.hasNext("0")==false) {
String s = input.next();
int num = 0;
char[] a = new char ...

Go to advanced search