62,620
社区成员
发帖
与我相关
我的任务
分享
package hugo;
public class Test1 {
public static void main(String [] args){
byte[] b = new byte[200];
for(int i=0;i<b.length;i++){
b[i] = (byte)i;
}
String s ="";
for(int i=0;i<100;i++){
s +=""+b[i];
}
System.out.println(s);
}
}