Skip to content

Commit 55cb08b

Browse files
committed
2 parents a57b0d5 + 2a5bd14 commit 55cb08b

File tree

145 files changed

+3162
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+3162
-0
lines changed

课程目录/数字逻辑(电路与电子技术)/实验/实验报告/实验8-时序逻辑电路【未完成】

Whitespace-only changes.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package Project_01.exercise_01;
2+
3+
public class Exercise_01 {
4+
public static void main(String[] args) {
5+
for (int i = 0; i < 5; i++) {
6+
System.out.println("Welcome to Java");
7+
}
8+
}
9+
}
13.1 KB
Loading
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package Project_01.exercise_02;
2+
3+
public class Exercise_02 {
4+
public static void main(String[] args) {
5+
System.out.println("a a^2 a^3");
6+
System.out.println("1 1 1");
7+
System.out.println("2 4 8");
8+
System.out.println("3 9 27");
9+
System.out.println("4 16 64");
10+
}
11+
}
26.6 KB
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package Project_01.exercise_03;
2+
3+
public class Exercise_03 {
4+
public static void main(String[] args) {
5+
System.out.println("Result: " + ((9.5 * 4.5 - 2.5 * 3) / (45.5 - 3.5)));
6+
}
7+
}
34.9 KB
Loading

0 commit comments

Comments
 (0)