Java 和 C 的入门案例

来源:互联网 发布:中国软件国际地址 编辑:程序博客网 时间:2024/05/16 01:11

C语言的入门案例

  1. 编写源代码 hello.c
# include <stdio.h>int main(){    printf("Hi ,world!");}
  1. 编译命令
gcc -o hello hello.c

3.运行命令
./hello

Java语言的入门案例

class HelloWorld{    public static void main(String[] args){        System.out.println("Hi, world !");    }}

java 的身上还可以看见 C的影子 , 但是确是两门不同语言了.

0 0