列表

详情


NP1. Hello World!

描述

将字符串 'Hello World!' 存储到变量str中,再使用print语句将其打印出来。

输入描述

输出描述

一行输出字符串Hello World!

原站题解

C 解法, 执行用时: 2ms, 内存消耗: 352KB, 提交时间: 2022-07-26

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

Java 解法, 执行用时: 8ms, 内存消耗: 9480KB, 提交时间: 2022-05-25

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

Python 解法, 执行用时: 9ms, 内存消耗: 2840KB, 提交时间: 2022-08-01

print "Hello World!"

Python 解法, 执行用时: 9ms, 内存消耗: 2848KB, 提交时间: 2022-07-27

str='Hello World!'

print(str)

Python 解法, 执行用时: 9ms, 内存消耗: 2848KB, 提交时间: 2022-07-25

s='Hello World!'
print(s)

上一题

下一题