mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 07:07:20 +00:00
10 lines
218 B
Java
10 lines
218 B
Java
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");
|
|
}
|
|
}
|