多样化题解
2023-08-23 13:34:16
发布于:江苏
65阅读
0回复
0点赞
C:
#include<stdio.h>
int main(){
printf("Hello world");
return 0;
}
C++:
1.cout输出
#include<iostream>
using namespace std;
int main(){
cout<<"Hello world";
return 0;
}
2.printf打印
#include<iostream>
using namespace std;
int main(){
printf("Hello world");
return 0;
}
3.puts直接版
#include<iostream>
using namespace std;
int main(){
puts("Hello world");
return 0;
}
4.puts拼接版
#include<iostream>
using namespace std;
int main(){
puts(“Hello" " " "world");
return 0;
}
5.string 有点多此一举
#include<iostream>
#include<cstring>
using namespace std;
int main(){
string s="Hello world";
cout<<s;
return 0;
}
Java:
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello world");
}
}
Pascal:
begin
writeln('Hello world');
end.
Python2:
print "Hello world"
Python3:
print("Hello world")
JavaScript:
console.log("Hello world")
PHP:
<?php
echo 'Hello World';
?>
C#Mono:
using System;
namespace helloWorld
{
class HelloWorld
{
static void Main(String[] args)
{
Console.WriteLine("Hello world");
}
}
}
Visual Basic:
subsub main
msgbox "Hello world"
end sub
}
R:
cat("Hello world")
Go:
package main
import "fmt"
func main() {
fmt.Println("Hello world")
}
全部评论 2
闲的呀
2024-05-05 来自 北京
1你咋知道的???
2024-05-25 来自 江苏
0
不过确实挺全
2024-05-05 来自 北京
0
有帮助,赞一个