凡心爷爷
发表于 2016-1-30 18:27:35
只学了这么多
python 2.x:
print "Hello World"
python 3.x:
print ("Hello World")
java:
System.out.println("Hello World")
c:
printf("Hello World")
伙夫和甲鱼
发表于 2016-1-30 18:48:54
python:
print('hello,world')
{:10_266:}{:10_266:}{:10_266:}{:10_266:}{:10_266:}{:10_266:}{:10_266:}{:10_266:}{:10_266:}{:10_266:}
moongf
发表于 2016-1-30 19:03:53
C
printf("hello world")
C++
cout << "hello world"
Python
print("hello world")
h34164708k
发表于 2016-1-30 20:40:40
易语言
信息框(“Hello World ”, ,)
c语言
#include<stdio.h>
void main(){
printf("helloworld\n");
}
python
print("helloworld")
不爱穿内裤
发表于 2016-1-30 20:41:09
python:
2.x
print 'Hello,world!'
3.x
print ('Hello,world!')
C:
printf("Hello,world!")
zyandyz003
发表于 2016-1-30 21:11:08
本帖最后由 zyandyz003 于 2016-1-30 21:12 编辑
没设置回帖仅楼主可见啊~
c
int main(void)
{
printf("hello world");
}
c++
int main()
{
cout<<"hello world";
}
python
print('hello world')
java
public static void main()
{
System.out.println("hello world");
}
大西瓜
发表于 2016-1-30 21:47:13
你好 世界
dreamfly5590
发表于 2016-1-30 21:51:48
print('Hello World!')
zlj19931010
发表于 2016-1-30 21:56:56
C:print("Hello World!");
java:System.out.println("Hello World!");
c#:Console.WriteLine ("Hello World!");
C++:cout<<"Hello World"<<endl;
JS:alert("hello world");
101℃太阳
发表于 2016-1-30 23:30:02
Halo 我的 = =....
最近的题目...
TakeOver5
发表于 2016-1-30 23:37:28
本帖最后由 TakeOver5 于 2016-1-30 23:38 编辑
C
printf("Hello World");
C++
cout<<"Hello World";
Java
System.out.print("Hello World");
Python
print("Hello World")
E子
发表于 2016-1-30 23:42:14
我只会C的
printf("Hello world!"\n);
(也可以是"To C or not to C"蛤蛤,看过那本书的都懂的)
还有P的
print('Hello,world!')
猪Juno
发表于 2016-1-31 01:55:35
R: str<-"hello,world"
str
Matlab: str='hello,world'
Python: print('hello,world')
扶冬至夏丶
发表于 2016-1-31 02:01:13
#include<stdio.h>
#include<stdlib.h>
void main()
{
printf("hello world\n");
system("pause");
}
skjohn
发表于 2016-1-31 02:20:39
C:printf("helloworld");
C++ : cout<<"helloworld";
QBasic : Print "helloworld"
Asp : Response.Write "helloworld"
PHP : echo "helloworld";
JScript: alert("helloworld")
VBScript:MsgBox "helloworld"
Jscript:document.write("helloworld")
Delphi: ShowMessage('helloworld!');
VB: Print "helloworld!"
VC: MessageBox("helloworld!");
shell: echo helloworld
perl: print 'helloworld'
java: System.out.println("helloworld");
powerBuilder:messagebox("helloworld")
C#:System.Console.WriteLine("helloworld!")
COBOL:DISPLAY 'helloworld!
Python:print("helloworld!")
AS:Alert.show("helloworld!");
Foxpro: ?
DOS 批处理: echo helloworld
易语言:调试输出(“helloworld!!”)
zc409
发表于 2016-1-31 07:06:06
phython
print('hello,world!')
shell
print 'hello,world'
PHP
<?php
echo"hello, world";
?>
HTML
<!DOCTYPE html>
<html>
</head>
<body>
hello, world
</body>
</html>
Scoundrel丶You
发表于 2016-1-31 07:30:26
#include<stdio.h>
void main()
{
ptintf(“hello world\n”);
}
atmo
发表于 2016-1-31 08:35:41
粘贴:HelloWorld
xiaocheng
发表于 2016-1-31 09:24:14
py
print("Hello, world")
新人刚开始学,掩面而走
awp
发表于 2016-1-31 10:06:31
py: print('Hello World!')
c: printf("Hello World");