美文网首页
Hello, World !

Hello, World !

作者: phcoding | 来源:发表于2017-08-14 17:08 被阅读15次

    摘要

    第一篇文章,就用本人所学过的语言问候一下世界吧!


    代码

    python

    print('Hello, World !')
    

    c

    #include <stdio.h>
    int main()
    {
        printf("Hello, World !");    
    }
    

    fortran

    program main
        implicit none
        write(*, *) "Hello, World !"
    end program main
    

    javascript

    console.log("Hello, World !");
    

    java

    import java.io.*;
    public class Hello {
        public static void main(STring[] args){
            System.out.println("Hello, World !");
        }
    }
    

    php

    <?php
    echo "Hello, World !";
    ?>
    

    html

    <html>
    <head>
        <meta charset="utf-8">
        <title>Hello, World !</title>
    </head>
    <body>
        <h1>Hello, World !</h1>
    </body>
    </html>
    

    关于作者

    相关文章

      网友评论

          本文标题:Hello, World !

          本文链接:https://www.haomeiwen.com/subject/jtoqhxtx.html