iT邦幫忙

2022 iThome 鐵人賽

DAY 3
0

系統:ubuntu-22.04
需要安裝套件如下(Command):

OpenJDK
sudo apt-get update
sudo apt-get install default-jre
sudo apt-get install default-jdk

// Your First Program

class HelloWorld{
public static void main(String args[]){
System.out.println("Hello World");
}
}

結果附圖:
https://ithelp.ithome.com.tw/upload/images/20220902/20151652aXdlRrOyE9.jpg

Java 99乘法表

public class MultiplicationTable {

public static void main(String[] args) {

    for(int i=1;i<=9;i++) {

        for(int j=1;j<=9;j++) {

            System.out.print(j+"×"+i+"="+i*j+"\t");// \t 跳到下一个TAB位置

        }

        System.out.println();

    }

}

}

附圖:
https://ithelp.ithome.com.tw/upload/images/20220903/20151652mKk4Y12oCI.jpg

參考來源:https://blog.gtwang.org/linux/how-to-install-java-with-apt-get-on-ubuntu-linux/


上一篇
Day2-C++_Hello_world
下一篇
Day4_Python_HelloWorld
系列文
30種程式語言的[hello_world]及如何建立環境30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言