这世界如果有如果🇨🇳 01画板 的评价

玩过
评价历史
设备
华为MediaPad M5 10.8
public class HelloWorld
{
public static void main(String[] args)
{
System.out.println(“HelloWorld!”);
}
}
#include <stdio.h>
int main()
{
printf(“hello world”);
return 0;
}
#include <stdafx.h>
#include <iostream>
using namespace std;
int main()
{
cout<<“hello world”<<endl;
return 0;
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(“Hello World!”);
Console.ReadLine();
}
}
}
Module MainFrm
Sub Main()
System.Console.WriteLine(“Hello, World!”)
End Sub
End Module
package main
import “fmt”
func main() {
fmt.Print(“Hello, World!”)
}
<html>
<body>
<p>
Hello world!
</p>
</body>
</html>
欢迎补充
38
转发
回复
10
38
最早
TapTap
友善回复,会获得更多的赞~
++
print("Hello world!")
2018/9/12
Jasen Yan
(=<`#9]~6ZY32Vx/4Rs+0No-&Jk)"Fh}|Bcy?`=*z]Kw%oG4UUS0/@-ejc(: '8d
Malbolge语言的Hello World
2019/12/28
aaa
大佬楼层
偷偷魂在其中| ू•ૅω•́)ᵎᵎᵎ
2020/4/17
失败者
我看不懂,但是我大受震惊
2021/8/10
檀MasamunE
标准输出(“Hello World”)
2021/9/14
沫沫--momo
虽然看不懂但我大为震惊
2021/11/28
suyiuv
console.log('Hello world!');
alert('Hello world!');
2022/4/4
屋顶的猫
回复 @失败者: 其实说白了就是输出了一个hellowold
2022/7/20
oh.dream~
{"rawtext":[{"text":"Hello world!"}]}
2022/10/28
手机用户105624675
class L():
def __init__(self,h):
self.h=h
class H(L):
def __init__(self,h):
L.__init__(self,h)
def Hello(self):
print(self.h)
H=h('Hello,World!')
h.Hello()
2022/12/10
已经到底了
10
38