-1

我有以下循环,它以算术序列打印前 1000 个。它的工作方式正是我想要的,但我有疑问我是否可以使用 printf() 而不是 print() 来调整输出,因为我看不到它的整洁和我想要的组织。

先感谢您

public class Iteration /* Class name */
{
   public static void main(String[]args) /* main Method */
    {

      int s = 0;
      int sum = 1;
      while ( s < 1000 )

       {

         s++;
         System.out.print(" " + sum);
         sum += 3;
       }
4

1 回答 1

0

简短的回答:是的,你可以。您也可以使用 System.out.format

如何?看这里:http ://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html#syntax

于 2013-11-05T17:08:39.183 回答