当前位置: 代码迷 >> Java相关 >> 什么才是菜问题?
  详细解决方案

什么才是菜问题?

热度:79   发布时间:2005-06-03 19:37:00.0
什么才是菜问题?
//把1-19按两行字符输出 public class pl20{ public static void main(String args[]){ int n=0; for(short i=0;i<20;i++){ System.out.print(" "+i+" "); n++; if(n<10) continue; else System.out.println(); n=0; } } } 输出结果为: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 请问怎样才能让它们这样输出啊(对齐输出) 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
搜索更多相关的解决方案: public  System  args  

----------------解决方案--------------------------------------------------------
public class pl20
{
public static void main(String args[])
{
  int n=0;
  for(short i=0;i&lt;20;i++)
  {
   System.out.print(i+"\t");
   n++;
   if(n&lt;10)
    continue;
   else
   System.out.println();
    n=0;
  }
   }
}
----------------解决方案--------------------------------------------------------
  相关解决方案