NP43. 判断布尔值
描述
输入描述
输出描述
输出"Hello World!"或者"Erros!"。示例1
输入:
1
输出:
Hello World!
Python 解法, 执行用时: 10ms, 内存消耗: 2836KB, 提交时间: 2022-08-02
a=input() if a: print('Hello World') else: print('Erros!')
Python 解法, 执行用时: 10ms, 内存消耗: 2840KB, 提交时间: 2022-08-03
a=int(input()) if a: print("Hello World!") else: print("Erros!")
Python 解法, 执行用时: 10ms, 内存消耗: 2856KB, 提交时间: 2022-08-03
i = int(input()) if i == 0: print("Erros!") elif i == 1: print("Hello World!")
Python 解法, 执行用时: 10ms, 内存消耗: 2856KB, 提交时间: 2022-08-01
str=input() if str==True: print("Hello World!") else: print("Erros!")
Python 解法, 执行用时: 10ms, 内存消耗: 2948KB, 提交时间: 2022-07-28
a=bool(input()) if a==1: print('Hello World!') else: print('Erros!')