编一个程序,在标准输出上打印“Hello, World"。
举一反三
- 编写一个C程序,运行时输出: *************** Hello World! ***************
- (1)编写一个Python程序,输出如下图形效果。(2)编写一个Python程序,输出如下语句。Hello,Python!Hello,World!
- 若在控制台输入“hello world”,则程序的输出是: A: hello world B: hello C: world
- 选择填空, 使程序输出“ World”<?php$Hello="World";$a="Hello";echoa;?>$$hello$$
- 给定一个java程序的代码片断如下,运行后正确的输出结果是( )。String s=”hello, world”;String str = s.replace(“,” , ” ”);System.out.println(str); A: hello world; B: hello, world C: HELLO WORLD D: HELLO ,WORLD;