public class test11{
public static void main(String[] args){

int i=0,j=0;
while(i<=127)
{
while(j<10)
{
System.out.print((char)i);
j++;
i++;
if(i==128)
{
System.out.println();
System.out.println("已經印完了");
break;
}
}
System.out.println();
j=0;
}
}
}
arrow
arrow
    全站熱搜

    Neo Chao 發表在 痞客邦 留言(0) 人氣()