blob: 66619bf2c51befec5c39ceb4c7c3f91c3b9140b2 [file] [log] [blame]
public class PR55 {
// This demonstrates a bug in gcj
public static void main(String[] argv){
int i = 666;
System.out.println("The number "+i+" is "+ (""+i).length() +" digits wide");
}
}