当前位置:首页 > 科技  > 软件

编程语言大比拼:Python、Java、C、C++、Go 实现 'Hello World' 和九九乘法表"

来源: 责编: 时间:2023-12-09 15:23:18 202观看
导读应该90%的IT专业的朋友写的第一段代码就是打印"holle world",每个大学老师都会通过这个方式吸引你对课程产生兴趣。也许有的朋友学的是JAVA开发,有的学的是c,在几年前应该很少有大学开了python、Golang相关课程,但是现

应该90%的IT专业的朋友写的第一段代码就是打印"holle world",每个大学老师都会通过这个方式吸引你对课程产生兴趣。也许有的朋友学的是JAVA开发,有的学的是c,在几年前应该很少有大学开了python、Golang相关课程,但是现在不一样,随着开发语言的成熟度越来越高,国内对研发的重视,可能很多学校都开设了python、Go语言等课程。Pgo28资讯网——每日最新资讯28at.com

Pgo28资讯网——每日最新资讯28at.com

今天通过 Python、Java、C、C++ 和 Go 这几种流行的编程语言来实现两个经典的编程练习:Pgo28资讯网——每日最新资讯28at.com

  • 打印 "Hello World"
  • 输出九九乘法表

打印 "Hello World"

用 Python 实现:Pgo28资讯网——每日最新资讯28at.com

print("Hello, World!")

用 Java 实现:Pgo28资讯网——每日最新资讯28at.com

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

用 C 实现:Pgo28资讯网——每日最新资讯28at.com

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

用 C++ 实现:Pgo28资讯网——每日最新资讯28at.com

#include <iostream>int main() {    std::cout << "Hello, World!" << std::endl;    return 0;}

用 Go 实现:Pgo28资讯网——每日最新资讯28at.com

package mainimport "fmt"func main() {    fmt.Println("Hello, World!")}

打印九九乘法表

用 python 实现:Pgo28资讯网——每日最新资讯28at.com

for i in range(1, 10):    for j in range(1, i+1):        print(f"{j} * {i} = {i*j}", end='/t')    print()

用JAVA实现:Pgo28资讯网——每日最新资讯28at.com

public class MultiplicationTable {    public static void main(String[] args) {        for (int i = 1; i <= 9; i++) {            for (int j = 1; j <= i; j++) {                System.out.print(j + " * " + i + " = " + (i*j) + "/t");            }            System.out.println();        }    }}

用 C 实现:Pgo28资讯网——每日最新资讯28at.com

#include <stdio.h>int main() {    int i, j;    for (i = 1; i <= 9; i++) {        for (j = 1; j <= i; j++) {            printf("%d * %d = %d/t", j, i, i*j);        }        printf("/n");    }    return 0;}

用 C++ 实现:Pgo28资讯网——每日最新资讯28at.com

#include <iostream>int main() {    for (int i = 1; i <= 9; i++) {        for (int j = 1; j <= i; j++) {            std::cout << j << " * " << i << " = " << i*j << "/t";        }        std::cout << std::endl;    }    return 0;}

用 Go 实现:Pgo28资讯网——每日最新资讯28at.com

package mainimport "fmt"func main() {    for i := 1; i <= 9; i++ {        for j := 1; j <= i; j++ {            fmt.Print(j, " * ", i, " = ", i*j, "/t")        }        fmt.Println()    }}


Pgo28资讯网——每日最新资讯28at.com

本文链接:http://www.28at.com/showinfo-26-40676-0.html编程语言大比拼:Python、Java、C、C++、Go 实现 'Hello World' 和九九乘法表&quot;

声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。邮件:2376512515@qq.com

上一篇: 你知道怎样在 Python 中管理内存吗

下一篇: B站边缘网络四层负载均衡器的探索与应用

标签:
  • 热门焦点
Top