Python
打印输出:
```python
print("Hello, World!")
```
变量定义和使用:
```python
name = "Alice"
print("My name is " + name)
```
简单的算术运算:
```python
a = 5
b = 3
sum_result = a + b
print("The sum of", a, "and", b, "is", sum_result)
```
Java
打印输出:
```java
public class Main {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
```
变量定义和使用:
```java
public class Main {
public static void main(String[] args) {
String name = "Bob";
System.out.println("My name is " + name);
}
}
```
JavaScript
打印输出:
```javascript
console.log("Hello, World!");
```
简单函数定义和调用:
```javascript
function addNumbers(x, y) {
return x + y;
}
let result = addNumbers(5, 3);
console.log("The sum of 5 and 3 is " + result);
```
HTML & CSS
创建简单的网页结构:
```html
Welcome to My Website