Search found 1 match

by tzongshiuan
Tue Dec 23, 2008 6:07 am
Forum: Volume 7 (700-799)
Topic: 706 - LCD Display
Replies: 221
Views: 65517

Re: 706 - LC-Display

import java.io.*;
import java.util.*;

class Main implements Runnable{
static String ReadLn(int maxLength){ // utility function to read from stdin,
// Provided by Programming-challenges, edit for style only
byte line[] = new byte [maxLength];
int length = 0;
int input = -1;
try{
while (length ...

Go to advanced search