s*****1 发帖数: 1 | |
d*******n 发帖数: 43 | |
c********1 发帖数: 5269 | 3 python
print("hello world")
java
System.out.println("hello world");
c++
printf("hello world");
【在 d*******n 的大作中提到】 : 容不容易写个hello world就知道了
|
c****x 发帖数: 6601 | 4 挺好。开发报税软件。
【在 s*****1 的大作中提到】 : 各位码农仪仪
|
d*******n 发帖数: 43 | 5 这位兄弟适合转码
【在 c********1 的大作中提到】 : python : print("hello world") : java : System.out.println("hello world"); : c++ : printf("hello world");
|
c********1 发帖数: 5269 | 6 吓一吓,不懂底层程序的
linux assembly
section .text
global _start ;must be declared for linker
(ld)
_start: ;tell linker entry point
mov edx,len ;message length
mov ecx,msg ;message to write
mov ebx,1 ;file descriptor (stdout)
mov eax,4 ;system call number (sys_
write)
int 0x80 ;call kernel
mov eax,1 ;system call number (sys_
exit)
int 0x80 ;call kernel
section .data
msg db 'Hello, world!',0xa ;our dear string
len equ $ - msg ;length of our dear string |
s******e 发帖数: 190 | 7 好多年前金蝶软件的人告诉我的,他们找马公只招会计系的,计算机系的不要
不会编程的会计很快就可以教会编程
不会会计的马公怎么教都教不会会计,而且很快就跑了 |
e***a 发帖数: 1661 | 8 任何专业背景的人都能转成码工,只要脑子正常,且有毅力。 |
n*****n 发帖数: 1 | 9 汇编语言不会编
linker
【在 c********1 的大作中提到】 : 吓一吓,不懂底层程序的 : linux assembly : section .text : global _start ;must be declared for linker : (ld) : _start: ;tell linker entry point : mov edx,len ;message length : mov ecx,msg ;message to write : mov ebx,1 ;file descriptor (stdout) : mov eax,4 ;system call number (sys_
|