mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 01:50:38 +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");
|
||
|
}
|
||
|
}
|