⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testmultableusingstringbuffer.java

📁 此源码为机械工业出版社出版的《Java语言程序设计》第三版所配套的书中所有源代码。
💻 JAVA
字号:
// TestMulTableUsingStringBuffer.java: Demonstrate string buffers
public class TestMulTableUsingStringBuffer
{
  // Main method
  public static void main(String[] args)
  {
    // Create a string buffer
    StringBuffer strBuf = new StringBuffer();

    // Get start time
    long startTime = System.currentTimeMillis();

    // Append the title to the buffer
    strBuf.append("       Multiplication Table" + '\n');
    strBuf.append("---------------------------------" + '\n');

    // Append the number title to the buffer
    strBuf.append("  | ");
    for (int j=1; j<=9; j++)
      strBuf.append("  " + j);
    strBuf.append('\n');

    // Append multiplication table body to the buffer
    for (int i=1; i<=9; i++)
    {
      strBuf.append(i + " | ");
      for (int j=1; j<=9; j++)
      {
        if (i*j < 10)
          strBuf.append("  "+i*j);
        else
          strBuf.append(" "+i*j);
      }

      strBuf.append(" " + '\n');
    }

    // Print the string buffer
    System.out.println(strBuf);

    // Get end time
    long endTime = System.currentTimeMillis();
    System.out.println("Elapsed time is " + (endTime - startTime)
      + " milliseconds");
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -