第六章——圖(3)圖的遍歷
阿新 • • 發佈:2020-12-07
今天寫一點Java的列印以及一些簡單的快捷操作
快捷操作在程式碼中表示了(編譯器為idea)
小白操作
public class Test {
public static void main(String[] args) {
//輸入main可以直接生成上面的語句 懶人必備
//輸入sout然後點選Tab可以直接生成下面的列印語句
//System.out.println( "hello world");
System.out.println( "hello world" );//列印加換行
System.out.print("hello world");//只是列印
}
}
``
``