From d56362a72c3df18955c407fa0d52761af2bd1fc7 Mon Sep 17 00:00:00 2001 From: unknown <2366023603@qq.com> Date: Thu, 24 Nov 2022 19:43:57 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E6=AC=A1=E4=BD=9C=E4=B8=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...344\275\225\344\275\277\347\224\250git.md" | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 "6 \351\203\255\345\256\207\351\221\253/2022.11.24\345\255\246\344\271\240\346\200\216\344\271\210\345\256\211\350\243\205jdk\345\222\214\345\246\202\344\275\225\344\275\277\347\224\250git.md" diff --git "a/6 \351\203\255\345\256\207\351\221\253/2022.11.24\345\255\246\344\271\240\346\200\216\344\271\210\345\256\211\350\243\205jdk\345\222\214\345\246\202\344\275\225\344\275\277\347\224\250git.md" "b/6 \351\203\255\345\256\207\351\221\253/2022.11.24\345\255\246\344\271\240\346\200\216\344\271\210\345\256\211\350\243\205jdk\345\222\214\345\246\202\344\275\225\344\275\277\347\224\250git.md" new file mode 100644 index 0000000..d2cc90c --- /dev/null +++ "b/6 \351\203\255\345\256\207\351\221\253/2022.11.24\345\255\246\344\271\240\346\200\216\344\271\210\345\256\211\350\243\205jdk\345\222\214\345\246\202\344\275\225\344\275\277\347\224\250git.md" @@ -0,0 +1,34 @@ +## java的安装 + +1.下载jdk:http://www.oraloe.com + +2.安装jdk + +注意:不要空格 不要中文 + +3.注意配置环境变量 + + + + + +## java的使用 + +1.打开DOS窗口:选择文件所在目录的地址栏,输入cmd + +2.编译程序:javac HelloWorld.java + +3.运行程序:java HelloWorld + +### 作业 + +pubilc class HelloWorld{ + +pubilc static void main(String[] args){ + +System.out println("HelloWorld"); + +} + +} + -- Gitee