码迷,mamicode.com
首页 > 编程语言 > 详细

python 输入一个整数,判断其是否既是3的倍数,又是5的倍数

时间:2018-11-03 23:04:12      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:整数   ==   python   print   col   int   put   class   div   

 v = int(input(请输入一个整数:))
 if v % 3 == 0 and v % 5 ==0:
     print(v,即是3的倍数又是5的倍数)
 else:
     print(不是3或5的倍数)

 

python 输入一个整数,判断其是否既是3的倍数,又是5的倍数

标签:整数   ==   python   print   col   int   put   class   div   

原文地址:https://www.cnblogs.com/chengxubo/p/9902302.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!