facts.java

来自「the lab1 from trimester one 2008」· Java 代码 · 共 39 行

JAVA
39
字号
/* Code for Demo for Assignment 1, COMP 102 */import javax.swing.*;//********************************************************************//  Facts.java       Author: Lewis/Loftus////  Demonstrates the use of the string concatenation operator and the//  automatic conversion of an integer to a string.//********************************************************************public class Facts {  //-----------------------------------------------------------------  //  Prints various facts.  //-----------------------------------------------------------------  public static void main (String[] args) {    // Strings can be concatenated into one long string    System.out.println ("We present the following facts for your "			+ "extracurricular edification:");    System.out.println ();    // A string can contain numeric digits    System.out.println ("Letters in the Hawaiian alphabet: 12");    // A numeric value can be concatenated to a string    System.out.println ("Dialing code for Antarctica: " + 672);    System.out.println ("Year in which Leonardo da Vinci invented "			+ "the parachute: " + 1515);    System.out.println ("Speed of ketchup: " + 40 + " km per year");  }}

⌨️ 快捷键说明

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