Skip to content

Commit

Permalink
add many notes
Browse files Browse the repository at this point in the history
  • Loading branch information
lzz19980125 committed Jun 30, 2022
1 parent 2843c32 commit ba5bb46
Show file tree
Hide file tree
Showing 192 changed files with 2,567 additions and 1,125 deletions.
5 changes: 5 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 0 additions & 11 deletions Discussion/.idea/$PROJECT_FILE$

This file was deleted.

8 changes: 0 additions & 8 deletions Discussion/.idea/.gitignore

This file was deleted.

16 changes: 0 additions & 16 deletions Discussion/.idea/checkstyle-idea.xml

This file was deleted.

15 changes: 0 additions & 15 deletions Discussion/.idea/misc.xml

This file was deleted.

9 changes: 0 additions & 9 deletions Discussion/.idea/modules.xml

This file was deleted.

465 changes: 0 additions & 465 deletions Discussion/.idea/qaplug_profiles.xml

This file was deleted.

6 changes: 0 additions & 6 deletions Discussion/.idea/vcs.xml

This file was deleted.

File renamed without changes.
57 changes: 0 additions & 57 deletions Discussion/Discussion_01/src/Discussion_01.java

This file was deleted.

Binary file removed Discussion/disc01.pdf
Binary file not shown.
Binary file not shown.
Binary file removed Discussion/out/production/Discussion_01/Fibonacci.class
Binary file not shown.
28 changes: 28 additions & 0 deletions Discussion/src/Disc_01.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/**
* @author Li Zezhong
* @create 2022-05-05 15:31
*/

public class Disc_01 {
public static void main(String[] args) {
fib.fib_01(6);
}
}

class fib{
public static void fib_01(int n){
int f0=0;
int f1=1;
int f2;
int k=1;
while(k<=n){
System.out.print(f0+", ");
f2=f0+f1;
f0=f1;
f1=f2;
k=k+1;
}
}
}


9 changes: 9 additions & 0 deletions Discussion/src/Disc_02.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/**
* @author Li Zezhong
* @create 2022-05-05 17:59
*/
public class Disc_02 {
public static void main(String[] args) {

}
}
File renamed without changes.
3 changes: 1 addition & 2 deletions Homework/Hw_0/src/Hw_0.java → HomeWork_/src/Hw_0.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
/**
* @author Li Zezhong
* @create 2021-12-02 19:35
* @create 2022-05-05 16:04
*/

public class Hw_0 {
public static void main(String[] args) {
Draw_triangle(10);
Expand Down
11 changes: 0 additions & 11 deletions Homework/.idea/$PROJECT_FILE$

This file was deleted.

8 changes: 0 additions & 8 deletions Homework/.idea/.gitignore

This file was deleted.

16 changes: 0 additions & 16 deletions Homework/.idea/checkstyle-idea.xml

This file was deleted.

15 changes: 0 additions & 15 deletions Homework/.idea/misc.xml

This file was deleted.

9 changes: 0 additions & 9 deletions Homework/.idea/modules.xml

This file was deleted.

Loading

0 comments on commit ba5bb46

Please sign in to comment.