洛谷题单1-B2002 Hello,World!-python-流程图重构

时间:2025-03-28 08:29:45

题目描述

编写一个能够输出 Hello,World! 的程序。

提示:

  • 使用英文标点符号;
  • Hello,World! 逗号后面没有空格。
  • HW大写字母。
输入格式

输出格式

输入输出样例 #1
输入 #1
输出 #1
Hello,World!

方式-print()

代码
class Solution:
    @staticmethod
    def oi_input():
        """从标准输入读取数据"""
        pass

    @staticmethod
    def oi_test():
        """提供测试数据"""
        pass

    @staticmethod
    def solution():
        print("Hello,World!")

oi_input = Solution.oi_input
oi_test = Solution.oi_test
solution = Solution.solution

if __name__ == '__main__':
    solution()
流程图
开始
主函数
执行 Solution.solution
打印 Hello,World!
结束