mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 02:09:12 +08: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");
|
||
|
}
|
||
|
}
|