From 592ae96434a1301bf4d96ee58de6cd7a3713172c Mon Sep 17 00:00:00 2001
From: pyx3e4zb6 <40336055@qq.com>
Date: Wed, 16 Jul 2025 11:35:37 +0800
Subject: [PATCH] ADD file via upload
---
index.html | 294 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 294 insertions(+)
create mode 100644 index.html
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..a1c0c41
--- /dev/null
+++ b/index.html
@@ -0,0 +1,294 @@
+
+
+
+
+
+
+
+
编译型 vs 解释型语言对比
+
+
+
+
编译型语言 (C)
+
+
+
+
#include <stdio.h>
+
+int main() {
+ // 模拟耗时操作
+ for (int i = 0; i < 100000000; i++) {}
+ printf("Hello, World!");
+ return 0;
+}
+
+
+
+
+
生成可执行文件: program.exe (Windows)
+
生成可执行文件: program.app (macOS)
+
生成可执行文件: program (Linux)
+
+
+
+
执行时间: 0.000s
+
+
+
+
+
+
+
+
+
解释型语言 (Python)
+
+
+
+
# 模拟耗时操作
+for i in range(100000000):
+ pass
+print("Hello, World!")
+
+
+
+
执行时间: 0.000s
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file