-
康露 的博客
代码风格4.0(未完待续)(hello world)
-
康露
作弊者
LV 6
@
2024-2-9 16:10:58
python
print("hello world");
C++(C++11)
#include <bits/stdc++.h>
using namespace std;
int main(){
cout<<"hello world";
return 0;
}
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>hello world</h1>
<h2>
</a>
</h2>
<input type="date">
</body>
</html>
C
#include<iostream>
using namespace std;
int main(){
printf("hello world");
}
Java
public class java {
public static void main(String[] args) {
System.out.println("hello world");
}
}
Go
package main
import "fmt"
func main(){
fmt.println("Hello,world!")
}
php
<?php
echo 'hello world';
?>