如何用c语言写一个hello world,用java语言,用python,用html用c++
#include<stdio.h>
int main()
{
printf("hello world");
}
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World";
return 0;
}
public class HelloWorld {
public static void main(String []args) {
System.out.println("Hello World!");
}
}
print("Hello, World!");
<html>
<body>
<div>hello world</div>
</body>
<html>
c++:
#include <iostream>
using namespace std;
int main() {
cout << "Hello World" << endl;
return 0;
}