#P1025. 输入一个数并按要求输出 2022-07-18T09:01:00 题目描述写一个程序,实现以下步骤:1、输入一个数;2、如果这个数为0,结束程序;3、如果这个数是3的倍数,跳转到步骤1;4、如果这个数不是3的倍数,输出这个数,跳转到步骤1。输入格式输入一个整数输出格式按题目要求输出代码示例:while 1: a = int(input()) if a == 0: break if a%3 == 0: continue print (a) 当前页面是本站的「Baidu MIP」版。发表评论请点击:完整版 »