前言

1024程序员节是广大程序员的共同节日。1024是2的十次方,二进制计数的基本计量单位之一。针对程序员经常周末加班与工作日熬夜的情况,部分互联网机构倡议每年的10月24日为1024程序员节,在这一天建议程序员拒绝加班,中国首届全球程序员节2017年在西安举办。

程序员就像是一个个1024,以最低调、踏实、核心的功能模块搭建起这个科技世界。1G=1024M,而1G与1级谐音,也有一级棒的意思。

hello world是我们初入编程世界的第一句话

以下我将以几种不同语言编写hello world,反正Hello World就完事了

Java

public static void main(String[] args) {
System.out.println("Hello World");
}

mark

Python

print("Hello World")

mark

Js

<html>
<head>
<meta charset="utf-8">
<title></title>
<script type="text/javascript">
alert("Hello World")
</script>


</head>
<body>
</body>
</html>

mark

Scala

object test1024 {
def main(args: Array[String]): Unit = {
print("Hello World")
}

}

mark

liunx

C++

#include <iostream>

using namespace std;


int main() {

cout << " Hello World " << endl;

return 0;
}

C

#include <stdio.h>


int main() {

printf(" Hello C Language ");

return 0;
}