add logseq-java

This commit is contained in:
Lostecho
2024-02-02 00:12:49 +08:00
parent 1cd5bb460f
commit c7947017c3
875 changed files with 57100 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
- 属于先验循环,用于可能不知道循环次数,但知道循环何时结束
- ```java
初始化条件;
while(判断条件){
//需要循环的代码
}
```