blob: a36f0d975112307bec4620b4816227ada253a301 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* RTErrorProg1.java */
public class RTErrorProg1
{
public static void main(String[] args)
{
int i, base = 0;
for (base = 10; base >= 2; --base) {
i = Integer.parseInt("40",base);
System.out.println("40 base "+base+" = "+i);
}
}
}
|