Skip to content

资源1(多种编程语言的"Hello, World!"程序) #1

@wangweihanNB

Description

@wangweihanNB

C语言:
#include <stdio.h>

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

int main() {
printf("Hello, World!\n");
return 0;
}
JAVA:
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
PYthon:
print("Hello, World!")

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    Status

    代码资源

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions