少女心-
hello写成哈喽(你好),是英语hello的谐音,表示打招呼。
hello是我们日常生活中使用频率较高的一个词,用作感叹词主要用于熟人间打招呼,也可用于呼叫远处的熟人或陌生人,以引起注意或还可作为打电话时呼叫对方之用语。
hello的含义及用法介绍:
hello作为名词和感叹词,中文翻译为(用于问候、接电话或引起注意)哈罗,喂,你好;(表示惊讶)嘿;(认为别人说了蠢话或没有注意听)喂,嘿。例句有:
1、Hello John, how are you?
哈罗,约翰,你好吗?
2、Say hello to Liz for me.
替我向利兹问好。
3、Hello, hello, what's going on here?
嘿,嘿,这是在干吗?
4、Hello? You didn't really mean that, did you?
嘿?你不会真是那个意思吧?
5、A moment later, Cohen picked up the phone. 'Hello?'
过了一会儿,科恩接起电话。“喂?”
汤汤小朋友
java:
python2:
python3:
C/C++:
Linux intel asm(由于百度知道不支持汇编语言,因此可读性会差一点):
[section data]
msg db "Hello world!", 0ax
len equ $ - msg
[section text]
global _start
_start:
mov eax, 4
mov ebx, 1
mov ecx, msg
mov edx, len
int 0x80
mov eax, 1
mov ebx, 0
int 0x80
Linux AT&T asm(由于百度知道不支持汇编语言,因此可读性会差一点):
.data
msg:
.ascii "Hello world!\n"
len = . - msg
.text
.globl _start
_start:
movl $4, %eax
movl $1, %ebx
movl $msg, %ecx
movl $len, %edx
int $0x80
movl $1, %eax
movl $0, %ebx
int $0x80
php: